String#
|
Evaluate if the string contains a pattern. |
|
Evaluate if the string contains any of the given patterns. |
|
Counts the ocurrrences of the given pattern in the string. |
|
Evaluate if the string ends with. |
|
Extract a pattern from the string. |
|
Find the position of the first occurrence of the given pattern. |
Extract the start of the string up to the given length. |
|
Return number of bytes (not chars) of a string. |
|
Return number of chars (not bytes) of a string. |
|
|
Pad string values at the end to the given length using the given fill character. |
|
Pad string values at the front to the given length using the given fill character. |
|
Replace the first occurence of a pattern with the given string. |
|
Replace the all occurences of a pattern with the given string. |
|
Replace the all occurences of any the given patterns with the given string. |
Reverse the string. |
|
|
Extract the substring at the given offset for the given length. |
|
Evaluate if the string start with. |
|
Trim string values. |
|
Trim string values from the end of the string. |
Trim string values from the start of the string. |
|
|
Trim string values removing the given prefix |
|
Trim string values removing the given suffix |
Extract the end of the string up to the given length. |
|
Return the lowercase of a string. |
|
Uppercase the first character and lowercase all the others ones of a string. |
|
Return the uppercase of a string. |
|
|
Pad numeric string values at the start to the given length using zeros. |