用正则表达式选出字符串中的数字

  例

String code = "FIX000001";
  Pattern.compile("[^0-9]").matcher(code).replaceAll("");

你可能感兴趣的:(记录)