|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Ustr | |
---|---|
org.jruby.util.string |
Uses of Ustr in org.jruby.util.string |
---|
Methods in org.jruby.util.string that return Ustr | |
---|---|
Ustr |
Ustr.concat(java.lang.String str)
Append a String to the end of this. |
Ustr |
Ustr.concat(Ustr us)
Append a Ustr to the end of this. |
Ustr |
Ustr.intern()
returns a canonical version of the Ustr, which should be treated as read-only. |
Ustr |
Ustr.replace(int oldChar,
int newChar)
returns a new Ustr with all instances of one Unicode character replaced by another. |
Ustr |
Ustr.sstrcat(Ustr from)
Safely append one Ustr to another. |
Ustr |
Ustr.sstrcpy(Ustr from)
Safely copy in the contents of another Ustr. |
Ustr |
Ustr.strcat(Ustr other)
Append the contents of another Ustr to the end of this one |
Ustr |
Ustr.strchr(int c)
Locate a Unicode character in a Ustr. |
Ustr |
Ustr.strcpy(byte[] from)
Copy in the contents of a null-terminated byte array. |
Ustr |
Ustr.strcpy(byte[] from,
int boffset)
Copy in the contents at some offset in a null-terminated byte array. |
Ustr |
Ustr.strcpy(java.lang.Object o)
Copy in the String representation of an Object. |
Ustr |
Ustr.strcpy(Ustr from)
Copy in the contents of another Ustr. |
Ustr |
Ustr.strrchr(int c)
Locate the last occurrence of a Unicode character in a Ustr. |
Ustr |
Ustr.strstr(Ustr little)
Locate a substring in a string. |
Ustr |
Ustr.substring(int start)
makes a new substring of a Ustr given a start index. |
Ustr |
Ustr.substring(int start,
int end)
makes a new substring of a Ustr identified by start and end indices. |
Methods in org.jruby.util.string with parameters of type Ustr | |
---|---|
Ustr |
Ustr.concat(Ustr us)
Append a Ustr to the end of this. |
boolean |
Ustr.endsWith(Ustr suffix)
Test if this Ustr ends with the specified suffix (a Ustr). |
int |
Ustr.indexOf(Ustr us)
Returns the index within this Ustr of the first occurrence of the specified other Ustr, or -1. |
int |
Ustr.indexOf(Ustr us,
int start)
Returns the index within this Ustr of the first occurrence of the specified other Ustr starting at the given offset, or -1. |
int |
Ustr.lastIndexOf(Ustr us)
Finds the last substring match. |
int |
Ustr.lastIndexOf(Ustr us,
int stop)
Finds the last substring match before the given index. |
Ustr |
Ustr.sstrcat(Ustr from)
Safely append one Ustr to another. |
Ustr |
Ustr.sstrcpy(Ustr from)
Safely copy in the contents of another Ustr. |
boolean |
Ustr.startsWith(Ustr us)
Tests if other Ustr is prefix of this. |
boolean |
Ustr.startsWith(Ustr us,
int start)
Tests if other Ustr is prefix at given index. |
Ustr |
Ustr.strcat(Ustr other)
Append the contents of another Ustr to the end of this one |
int |
Ustr.strcmp(Ustr other)
Compare two Ustrs. |
Ustr |
Ustr.strcpy(Ustr from)
Copy in the contents of another Ustr. |
Ustr |
Ustr.strstr(Ustr little)
Locate a substring in a string. |
Constructors in org.jruby.util.string with parameters of type Ustr | |
---|---|
Ustr(Ustr from)
Makes a Ustr which is a copy of another Ustr |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |