public class StringExt
extends java.lang.Object
| Constructor and Description |
|---|
StringExt() |
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
replaceLast(java.lang.String find,
java.lang.String replace,
java.lang.String source)
Find the last occurrence of "find" in the "source" String and replace it by "replace".
|
public static java.lang.String replaceLast(java.lang.String find,
java.lang.String replace,
java.lang.String source)
find - String to findreplace - String to replacesource - the source String to process.