Internationalization

© examsiri.com
Question : 14 of 18
 
Marks: +1, -0
Given:
import java.util.regex.*;
class Regex2 {
  public static void main(String[] args) {
   Pattern p = Pattern.compile(args[0]);
   Matcher m = p.matcher(args[1]);
   boolean b = false;
   while(b = m.find()) {
    System.out.print(m.start() + m.group());
   }
  }
}

And the command line:
java Regex2 "\d*" ab34ef
What is the result?
Go to Question: