fork(1) download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4. import java.util.regex.*;
  5.  
  6. class Ideone
  7. {
  8. public static void main (String[] args) throws java.lang.Exception
  9. {
  10. Pattern p = Pattern.compile("\\d+(?:\\.\\d+)?");
  11. Matcher m = p.matcher("(£0.78) а также ($1.78)");
  12. while (m.find()) {
  13. System.out.println(m.group());
  14. }
  15. }
  16. }
Success #stdin #stdout 0.04s 2184192KB
stdin
Standard input is empty
stdout
0.78
1.78