elharo opened a new issue, #362:
URL: https://github.com/apache/maven-shared-utils/issues/362

   ### 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. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to