up201809108 opened a new pull request #106: TEXT-86
URL: https://github.com/apache/commons-text/pull/106
 
 
   Fixed Jira issue 86, 
https://issues.apache.org/jira/projects/TEXT/issues/TEXT-86?filter=allopenissues,
 added replaceAll(char search, String replaceStr) method and consequent unit 
tests.
   
   The original methods replace a char for a char or a String for a String. My 
method replaces a char for a String.
   
   All other tests continue to pass
   
   Example:
   ```
   StringBuilder sb= new StringBuilder ("test");
   sb.replaceAll('t',"th");
   sb.toString() => "thesth"
   ```

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to