本文介绍了正则表达式检查用户名中句点符号的连续出现的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须在我的应用程序中验证用户名,以便它不能包含两个连续的句点符号.我尝试了以下方法.

I have to validate username in my app so that it cannot contain two consecutive period symbols. I tried the following.

 username.match(/(..)/)

但发现这匹配a".和一个……".我希望将 nil 作为输入a."的匹配操作的输出.我的方法对吗?

but found out that this matches "a." and "a..". I expected to get nil as the output of the match operation for input "a.". Is my approach right ?

推荐答案

句号前需要加一个\,因为句号是除换行符以外的任何字符"的保留字符.

You need to put a \ in front of the periods, because period is a reserved character for "any character except newline".

那就试试吧:

username.match(/(\.\.)/)

这篇关于正则表达式检查用户名中句点符号的连续出现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 04:42