Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the equivalent of Regex-replace-with-function-evaluation in Java 7?

I'm looking for a very simple way of getting the equivalent of something like the following JavaScript code. That is, for each match I would like to call a certain transformation function and use the result as the replacement value.

var res = "Hello World!".replace(/\S+/, function (word) {     // Since this function represents a transformation,     // replacing literal strings (as with replaceAll) are not a viable solution.     return "" + word.length; }) // res => "5 6" 

Only .. in Java. And, preferably as a "single method" or "template" that can be reused.

like image 678
user2864740 Avatar asked Nov 02 '13 00:11

user2864740


1 Answers

Your answer is in the Matcher#appendReplacement documentation. Just put your function call in the while loop.

[The appendReplacement method] is intended to be used in a loop together with the appendTail and find methods. The following code, for example, writes one dog two dogs in the yard to the standard-output stream:

Pattern p = Pattern.compile("cat"); Matcher m = p.matcher("one cat two cats in the yard"); StringBuffer sb = new StringBuffer(); while (m.find()) {     m.appendReplacement(sb, "dog"); } m.appendTail(sb); System.out.println(sb.toString()); 
like image 125
jtahlborn Avatar answered Sep 21 '22 17:09

jtahlborn