-
Notifications
You must be signed in to change notification settings - Fork 28
Open
Labels
enhancementNew feature or requestNew feature or request
Description
New feature, improvement proposal
replace(String text, String repl, String with) text.replace(repl, with) Since Java 1.5. String.replace replaces all occurrences (despite the name not being replaceAll, which implies Regex).
replace(String text, char repl, char with) text.replace(repl, with) Since Java 1.5. Replaces all occurrences of the char.
contains(String str, String searchStr) str.contains(searchStr) Since Java 1.5.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request