Java:String.matches()

时间:2012-04-21 17:01:03

标签: java regex string

我想确定一个字符串是否只包含两个单词,它们之间有一个空格字符。第一个单词应该只包含字母数字字符。第二个应该只包括数字。一个例子是:asd 15

我想使用String.matches。我该怎么办?或者我应该使用哪种正则表达式?

提前致谢。

3 个答案:

答案 0 :(得分:7)

你找的是:

String regex = "^[A-Za-z]+ [0-9]+$";

说明:

^         the beginning of the string (nothing before the next token)
[A-Za-z]+ at least one, but maybe more alphabetic chars (case insensitive)
          a single space (hard to see :) )
[0-9]+    at least one, but maybe more digits
$         end of the string (nothing after the digits)

答案 1 :(得分:4)

你可以试试这个正则表达式

"[A-Za-z0-9]+\\s[0-9]+"

答案 2 :(得分:0)

试试这个:String pattern = new String("^[0-9]*[A-Za-z]+ [0-9]+$")