int |
StringInspector.incrementPosition(int by,
Set<SearchMode> searchMode) |
Increments the current position index, by be given number, taking into consideration the "escaped" status of current character, if the mode
ALLOW_BACKSLASH_ESCAPE is present in the specified search mode.
|
int |
StringInspector.incrementPosition(Set<SearchMode> searchMode) |
Increments the current position index, by one, taking into consideration the "escaped" status of current character, if the mode
ALLOW_BACKSLASH_ESCAPE is present in the search mode specified.
|
int |
StringInspector.indexOfIgnoreCase(String searchFor,
Set<SearchMode> searchMode) |
Finds the position of the given string within the source string, ignoring case, with the option to skip text delimited by the specified markers or inside
comment blocks.
|
static int |
StringUtils.indexOfIgnoreCase(int startingPosition,
String searchIn,
String[] searchForSequence,
String openingMarkers,
String closingMarkers,
Set<SearchMode> searchMode) |
Finds the position of the first of a consecutive sequence of strings within a string, ignoring case, with the option to skip text delimited by given
markers or within comments.
|
static int |
StringUtils.indexOfIgnoreCase(int startingPosition,
String searchIn,
String searchFor,
String openingMarkers,
String closingMarkers,
String overridingMarkers,
Set<SearchMode> searchMode) |
Finds the position of a substring within a string, ignoring case, with the option to skip text delimited by given markers or within comments.
|
static int |
StringUtils.indexOfIgnoreCase(int startingPosition,
String searchIn,
String searchFor,
String openingMarkers,
String closingMarkers,
Set<SearchMode> searchMode) |
Finds the position of a substring within a string, ignoring case, with the option to skip text delimited by given markers or within comments.
|
static int |
StringUtils.indexOfNextAlphanumericChar(int startingPosition,
String searchIn,
String openingMarkers,
String closingMarkers,
String overridingMarkers,
Set<SearchMode> searchMode) |
Finds the position of the next alphanumeric character within a string, with the option to skip text delimited by given markers or within comments.
|
static int |
StringUtils.indexOfNextNonWsChar(int startingPosition,
String searchIn,
String openingMarkers,
String closingMarkers,
String overridingMarkers,
Set<SearchMode> searchMode) |
Finds the position of the next non-whitespace character within a string, with the option to skip text delimited by given markers or within comments.
|
static int |
StringUtils.indexOfNextWsChar(int startingPosition,
String searchIn,
String openingMarkers,
String closingMarkers,
String overridingMarkers,
Set<SearchMode> searchMode) |
Finds the position of the next whitespace character within a string, with the option to skip text delimited by given markers or within comments.
|
static List<String> |
StringUtils.split(String stringToSplit,
String delimiter,
String openingMarkers,
String closingMarkers,
boolean trim,
Set<SearchMode> searchMode) |
Splits stringToSplit into a list, using the given delimiter and skipping all between the given markers.
|
static List<String> |
StringUtils.split(String stringToSplit,
String delimiter,
String openingMarkers,
String closingMarkers,
String overridingMarkers,
boolean trim,
Set<SearchMode> searchMode) |
Splits stringToSplit into a list, using the given delimiter and skipping all between the given markers.
|