| java.lang.Object org.continuent.sequoia.common.util.Strings
replace | public static String replace(String sourceString, String replace, String with)(Code) | | Replaces all occurrences of a String within another String.
Parameters: sourceString - source String Parameters: replace - text pattern to replace Parameters: with - replacement text the text with any replacements processed, null ifnull String input |
replaceCasePreserving | public static String replaceCasePreserving(String sourceString, String replace, String with)(Code) | | Replaces all occurrences of a String within another String. The String to
be replaced will be replaced ignoring cases, all other cases are preserved
in the returned string
Parameters: sourceString - source String Parameters: replace - text to replace, case insensitive Parameters: with - replacement text the text with any replacements processed, null ifnull String input |
|
|