28

我有一个询问 XML 元素名称的输入对话框,我想检查它是否有空格。

我可以做类似 name.matches() 的事情吗?

4

10 回答 10

73

为什么使用正则表达式?

name.contains(" ")

这应该同样有效,而且速度更快。

于 2012-07-15T00:37:16.110 回答
11

如果您将使用 Regex,它已经为任何非空白字符提供了预定义的字符类“\S”。

!str.matches("\\S+")

告诉您这是否是一个至少包含一个字符的字符串,其中所有字符都是非空格

于 2016-06-17T14:44:29.543 回答
9

一个与前面类似的简单答案是:

str.matches(".*\\s.*")
  • 第一个“.*”表示空格前面可以有零个或多个任何字符的实例。
  • "\\s" 表示它必须包含任何空白字符。
  • 最后一个“.*”表示空格后​​面可以有零个或多个任何字符的实例。

将所有这些放在一起时,如果字符串中的任何位置有一个或多个空格字符,则返回 true。

这是一个简单的测试,您可以运行它来对您的解决方案进行基准测试:

boolean containsWhitespace(String str){
    return str.matches(".*\\s.*");
}

String[] testStrings = {"test", " test", "te st", "test ", "te   st", 
                        " t e s t ", " ", "", "\ttest"};
for (String eachString : testStrings) {
        System.out.println( "Does \"" + eachString + "\" contain whitespace? " + 
                             containsWhitespace(eachString));
}
于 2020-01-30T22:01:30.687 回答
5
string name = "Paul Creasey";
if (name.contains(" ")) {

}
于 2012-07-15T00:36:44.890 回答
3
if (str.indexOf(' ') >= 0)

会(稍微)快一些。

于 2012-07-15T01:48:26.243 回答
2

如果你真的想要一个正则表达式,你可以使用这个:

str.matches(".*([ \t]).*")

从某种意义上说,与此正则表达式匹配的所有内容都不是有效的 xml 标记名称:

if(str.matches(".*([ \t]).*")) 
      print "the input string is not valid"
于 2012-07-15T00:42:15.170 回答
0

这是在 android 7.0 到 android 10.0 中测试的,它可以工作

使用这些代码检查字符串是否包含空格/空格可能位于第一个位置、中间或最后一个位置:

 name = firstname.getText().toString(); //name is the variable that holds the string value

 Pattern space = Pattern.compile("\\s+");
 Matcher matcherSpace = space.matcher(name);
 boolean containsSpace = matcherSpace.find();

 if(constainsSpace == true){
  //string contains space
 }
 else{
  //string does not contain any space
 }
于 2019-11-04T03:33:59.843 回答
0

您可以使用此代码检查输入字符串是否包含空格?

public static void main(String[]args)
{
    Scanner sc=new Scanner(System.in);
    System.out.println("enter the string...");
    String s1=sc.nextLine();
    int l=s1.length();
    int count=0;
    for(int i=0;i<l;i++)
    {
        char c=s1.charAt(i);
        if(c==' ')
        {
        System.out.println("spaces are in the position of "+i);
        System.out.println(count++);
        }
        else
        {
        System.out.println("no spaces are there");
    }
}
于 2020-10-17T05:21:33.123 回答
0

要检查字符串是否不包含任何空格,您可以使用

string.matches("^\\S*$")

例子:

"name"        -> true
"  "          -> false
"name xxname" -> false
于 2020-11-10T14:52:20.963 回答
0

您可以使用正则表达式“\\s”</p>

计算空格数的示例程序(Java 9 及更高版本)

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

public class Main {
  public static void main(String[] args) {

    Pattern pattern = Pattern.compile("\\s", Pattern.CASE_INSENSITIVE);        
    Matcher matcher = pattern.matcher("stackoverflow is a good place to get all my answers");        

    long matchCount = matcher.results().count();   
 
    if(matchCount > 0) 
      System.out.println("Match found " + matchCount + " times.");           
    else 
      System.out.println("Match not found");        
  }
}

对于Java 8 及更低版本,您可以在 while 循环中使用 matcher.find() 并增加计数。例如,

int count = 0;
while (matcher.find()) {
  count ++;
}
于 2021-01-18T14:31:49.663 回答