Java Regex to Validate Full Name allow only Spaces and Letters

前端 未结 14 2539
抹茶落季
抹茶落季 2020-11-28 04:50

I want regex to validate for only letters and spaces. Basically this is to validate full name. Ex: Mr Steve Collins or Steve Collins I tried this regex.

14条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 05:18

    You could even try this expression ^[a-zA-Z\\s]*$ for checking a string with only letters and spaces (nothing else).

    For me it worked. Hope it works for you as well.

    Or go through this piece of code once:

        CharSequence inputStr = expression;
        Pattern pattern = Pattern.compile(new String ("^[a-zA-Z\\s]*$"));
        Matcher matcher = pattern.matcher(inputStr);
        if(matcher.matches())
        {
             //if pattern matches
        }
        else
        {
             //if pattern does not matches
        }
    

提交回复
热议问题