什么是javascript正则表达式来验证字符串值数组

时间:2019-05-15 11:17:39

标签: javascript node.js regex mongoose

我想使用正则表达式验证字符串类型的单个元素的数组。数组不能为空,并且不能以任何特殊符号开头(#除外),并且字符串只能包含数字和字母。

我尝试了什么 [a-zA-z0-9s!@#$%^&*()_ / \ + =。,〜`] +

2 个答案:

答案 0 :(得分:0)

您可以尝试

regex = /^#?[a-zA-Z0-9]+/gm;

答案 1 :(得分:0)

尝试一下:

regex = /^#?[a-z0-9]+/gi;

故障:

/^ - Match the start of the string
#? - Match an optional #
[a-z0-9] - Character set including the lowercase alphabet, and all ten digits
+ - Match one or more of the preceding character set
/gi - Global and case-insensitive flags