使用Java正则表达式验证名字和姓氏

为了使用正则表达式匹配名字和姓氏,我们在Java中使用matchs方法。java.lang.String.matches()方法返回一个布尔值,该值取决于String与正则表达式的匹配。

声明-java.lang.String.matches()方法声明如下-

public boolean matches(String regex)

让我们看一个使用正则表达式验证名字和姓氏的程序-

示例

public class Example {

   public static void main( String[] args ) {

      System.out.println(firstName("Tom"));

      System.out.println(lastName("hanks"));

   }

   //验证名字

   public static boolean firstName( String firstName ) {

      return firstName.matches( "[A-Z][a-z]*" );

   }

   //验证姓氏

   public static boolean lastName( String lastName ) {

      return lastName.matches( "[A-Z]+([ '-][a-zA-Z]+)*" );

   }

}

输出结果

true

false

以上是 使用Java正则表达式验证名字和姓氏 的全部内容, 来源链接: utcz.com/z/316202.html

回到顶部