Skip navigation links
A B C D E F H I J L P R S T U W 

A

append(String, String...) - Static method in class strman.Strman
Appends Strings to value
appendArray(String, String[]) - Static method in class strman.Strman
Append an array of String to value
at(String, int) - Static method in class strman.Strman
Get the character at index.

B

base64Decode(String) - Static method in class strman.Strman
Decodes data encoded with MIME base64
base64Encode(String) - Static method in class strman.Strman
Encodes data with MIME base64.
between(String, String, String) - Static method in class strman.Strman
Returns an array with strings between start and end.
binDecode(String) - Static method in class strman.Strman
Convert binary unicode (16 digits) string to string chars
binEncode(String) - Static method in class strman.Strman
Convert string chars to binary unicode (16 digits)

C

capitalize(String) - Static method in class strman.Strman
Converts the first character of string to upper case and the remaining to lower case.
chars(String) - Static method in class strman.Strman
Returns a String array consisting of the characters in the String.
charsCount(String) - Static method in class strman.Strman
Counts the number of occurrences of each character in the string
collapseWhitespace(String) - Static method in class strman.Strman
Replace consecutive whitespace characters with a single space.
contains(String, String) - Static method in class strman.Strman
Verifies that the needle is contained in the value.
contains(String, String, boolean) - Static method in class strman.Strman
Verifies that the needle is contained in the value.
containsAll(String, String[]) - Static method in class strman.Strman
Verifies that all needles are contained in value.
containsAll(String, String[], boolean) - Static method in class strman.Strman
Verifies that all needles are contained in value
containsAny(String, String[]) - Static method in class strman.Strman
Verifies that one or more of needles are contained in value.
containsAny(String, String[], boolean) - Static method in class strman.Strman
Verifies that one or more of needles are contained in value.
countSubstr(String, String) - Static method in class strman.Strman
Count the number of times substr appears in value
countSubstr(String, String, boolean, boolean) - Static method in class strman.Strman
Count the number of times substr appears in value

D

decDecode(String) - Static method in class strman.Strman
Convert decimal unicode (5 digits) string to string chars
decEncode(String) - Static method in class strman.Strman
Convert string chars to decimal unicode (5 digits)
decode(String, int, int) - Static method in class strman.Strman
 

E

encode(String, int, int) - Static method in class strman.Strman
 
endsWith(String, String) - Static method in class strman.Strman
Test if value ends with search.
endsWith(String, String, boolean) - Static method in class strman.Strman
Test if value ends with search.
endsWith(String, String, int, boolean) - Static method in class strman.Strman
Test if value ends with search.
ensureLeft(String, String) - Static method in class strman.Strman
Ensures that the value begins with prefix.
ensureLeft(String, String, boolean) - Static method in class strman.Strman
Ensures that the value begins with prefix.
ensureRight(String, String) - Static method in class strman.Strman
Ensures that the value ends with suffix.
ensureRight(String, String, boolean) - Static method in class strman.Strman
Ensures that the value ends with suffix.

F

first(String, int) - Static method in class strman.Strman
Returns the first n chars of String
format(String, String...) - Static method in class strman.Strman
Formats a string using parameters

H

head(String) - Static method in class strman.Strman
Return the first char of String
hexDecode(String) - Static method in class strman.Strman
Convert hexadecimal unicode (4 digits) string to string chars
hexEncode(String) - Static method in class strman.Strman
Convert string chars to hexadecimal unicode (4 digits)
htmlDecode(String) - Static method in class strman.Strman
Converts all HTML entities to applicable characters.
htmlEncode(String) - Static method in class strman.Strman
Convert all applicable characters to HTML entities.

I

indexOf(String, String, int, boolean) - Static method in class strman.Strman
The indexOf() method returns the index within the calling String of the first occurrence of the specified value, starting the search at fromIndex.
inequal(String, String) - Static method in class strman.Strman
Deprecated.
use unequal instead
insert(String, String, int) - Static method in class strman.Strman
Inserts 'substr' into the 'value' at the 'index' provided.
isEnclosedBetween(String, String) - Static method in class strman.Strman
Verifies whether String is enclosed by encloser
isEnclosedBetween(String, String, String) - Static method in class strman.Strman
Verifies whether String is enclosed by encloser
isLowerCase(String) - Static method in class strman.Strman
Verifies if String is lower case
isString(Object) - Static method in class strman.Strman
Checks whether Object is String
isUpperCase(String) - Static method in class strman.Strman
Verifies if String is uppercase

J

join(String[], String) - Static method in class strman.Strman
Join concatenates all the elements of the strings array into a single String.

L

last(String, int) - Static method in class strman.Strman
Return the last n chars of String
lastIndexOf(String, String) - Static method in class strman.Strman
This method returns the index within the calling String object of the last occurrence of the specified value, searching backwards from the offset.
lastIndexOf(String, String, boolean) - Static method in class strman.Strman
This method returns the index within the calling String object of the last occurrence of the specified value, searching backwards from the offset.
lastIndexOf(String, String, int, boolean) - Static method in class strman.Strman
This method returns the index within the calling String object of the last occurrence of the specified value, searching backwards from the offset.
leftPad(String, String, int) - Static method in class strman.Strman
Returns a new string of a given length such that the beginning of the string is padded.
leftTrim(String) - Static method in class strman.Strman
Removes all spaces on left
length(String) - Static method in class strman.Strman
Returns length of String.
lowerFirst(String) - Static method in class strman.Strman
Converts the first character of string to lower case.

P

prepend(String, String...) - Static method in class strman.Strman
Return a new String starting with prepends
prependArray(String, String[]) - Static method in class strman.Strman
Return a new String starting with prepends

R

removeEmptyStrings(String[]) - Static method in class strman.Strman
Remove empty Strings from string array
removeLeft(String, String) - Static method in class strman.Strman
Returns a new String with the prefix removed, if present.
removeLeft(String, String, boolean) - Static method in class strman.Strman
Returns a new String with the prefix removed, if present.
removeNonWords(String) - Static method in class strman.Strman
Remove all non word characters.
removeRight(String, String) - Static method in class strman.Strman
Returns a new string with the 'suffix' removed, if present.
removeRight(String, String, boolean) - Static method in class strman.Strman
Returns a new string with the 'suffix' removed, if present.
removeSpaces(String) - Static method in class strman.Strman
Remove all spaces and replace for value.
repeat(String, int) - Static method in class strman.Strman
Returns a repeated string given a multiplier.
replace(String, String, String, boolean) - Static method in class strman.Strman
Replace all occurrences of 'search' value to 'newvalue'.
reverse(String) - Static method in class strman.Strman
Reverse the input String
rightPad(String, String, int) - Static method in class strman.Strman
Returns a new string of a given length such that the ending of the string is padded.
rightTrim(String) - Static method in class strman.Strman
Remove all spaces on right.

S

safeTruncate(String, int, String) - Static method in class strman.Strman
Truncate the string securely, not cutting a word in half.
shuffle(String) - Static method in class strman.Strman
It returns a string with its characters in random order.
slice(String, int, int) - Static method in class strman.Strman
Alias of substring method
slugify(String) - Static method in class strman.Strman
Convert a String to a slug
split(String, String) - Static method in class strman.Strman
Alias to String split function.
strman - package strman
 
Strman - Class in strman
A String manipulation library without any dependencies
surround(String, String, String) - Static method in class strman.Strman
Surrounds a 'value' with the given 'prefix' and 'suffix'.

T

tail(String) - Static method in class strman.Strman
Return tail of the String
toCamelCase(String) - Static method in class strman.Strman
Transform to camelCase
toDecamelize(String, String) - Static method in class strman.Strman
Decamelize String
toKebabCase(String) - Static method in class strman.Strman
Transform to kebab-case.
toSnakeCase(String) - Static method in class strman.Strman
Transform to snake_case.
toStudlyCase(String) - Static method in class strman.Strman
Transform to StudlyCaps.
transliterate(String) - Static method in class strman.Strman
Remove all non valid characters.
trimEnd(String) - Static method in class strman.Strman
Removes trailing whitespace from string.
trimEnd(String, String...) - Static method in class strman.Strman
Removes trailing characters from string.
trimStart(String) - Static method in class strman.Strman
Removes leading whitespace from string.
trimStart(String, String...) - Static method in class strman.Strman
Removes leading characters from string.
truncate(String, int, String) - Static method in class strman.Strman
Truncate the unsecured form string, cutting the independent string of required position.

U

unequal(String, String) - Static method in class strman.Strman
Tests if two Strings are inequal
upperFirst(String) - Static method in class strman.Strman
Converts the first character of string to upper case.

W

words(String) - Static method in class strman.Strman
Splits a String to words
A B C D E F H I J L P R S T U W 
Skip navigation links