JAVA里,如何匹配一个多位数?(正则表达式)

2024-11-02 08:32:30
推荐回答(4个)
回答1:

             //匹配的正则表达式
            Regex r = new Regex(@"([1-9]\d*\.?\d*)|(0\.\d*[1-9])");

            //开始匹配
            Match m = r.Match(this.textBox1.Text);
            //得到具体数字
            m.Groups[0].Value
            //接下来就是string的replace的活了。

回答2:

String ss="33 33 33 30";
String[] num=ss.split(" ");
这样就可以弄成是num={"33","33","33","30"}的数组了。。
之后自己添加
进去,就不用我说了吧

回答3:

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public final class Second {

public static void main( String[] args )
{
String regex = "[0-9]{1,}";
String str = " 33 444 5555";
Pattern pat = Pattern.compile(regex);
Matcher matcher = pat.matcher(str);
int i=0;
while (matcher.find()) {
String temp = str.substring(matcher.start()+7*i,matcher.end()+7*i);
str=str.replaceAll(temp, ""+temp+"");
i++;
}
System.out.println(str);

}
}

回答4:

Stirng reg = "\d+";