如何使用java正则表达式验证字符串?

我想创建一个程序,该程序能够检查字符串是否适合作为人的姓名。但是我正在努力使用正则表达式来验证字符串,如果它可以接受是一个人的名字。你能帮我在我的代码中实现正确的条件吗?的字符串将被视为一个人的名字,如果满足以下条件:如何使用java正则表达式" title="java正则表达式">java正则表达式验证字符串?

  • 之前没有空格第一个字
  • 没有非单词字符
  • 没有2个或多个连续的空格

如果它存在于我的字符串中的最后一个单词之后,我还想删除一个空格。我正在做所有这些只是为了强制用户输入正确格式的文本,我将很快发布在我的JSON上。这就是为什么一切都应该首先得到验证。没有关于空格的问题,因为我已经在我的XML文件中定义了我的EditText的正确inputType。

这是我试图执行代码:

public boolean isFirstnameValid(String regex, String text){ 

Pattern checkRegex = Pattern.compile(regex);

Matcher regexMatcher = checkRegex.matcher(text);

while(regexMatcher.find()){

if(regexMatcher.group().length()!=0){

Log.e("searched",regexMatcher.group().trim());

}

}

return false;

// I returned false because, I'm still confused about what conditions should I implement.

}

这是主要的方法在我的实际参数来实现:

@Override 

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

// String firstname = "Kirby Aster";

// String lastname = "Abadilla";

et =(EditText) findViewById (R.id.editText1);

b = (Button) findViewById (R.id.button1);

b.setOnClickListener(new OnClickListener(){

@Override

public void onClick(View arg0) {

// TODO Auto-generated method stub

String text = et.getText().toString();

isFirstnameValid("[A-Za-z]{1,}", text);

}

});

}

回答:

我不喜欢isFirstnameValid方法的实现。我认为你会让它变得有点复杂。我会用简单的String.matches做的工作,比如:

public boolean isFirstnameValid(String text){ 

return text..matches("^([A-Za-z]+)(\\s[A-Za-z]+)*\\s?$");

}

上述正则表达式满足您的所有条件,包括允许在后面加上一个空格。你可能会考虑在每个单词的第一个大写字母的另一个条件(正则表达式会稍微改变)。然后这样称呼它:

if(isFirstnameValid(text)){ 

text = text.trim();

} else {

// define your failing condition here

}

如果您有任何查询随时问。

以上是 如何使用java正则表达式验证字符串? 的全部内容, 来源链接: utcz.com/qa/259024.html

回到顶部