我想使用正则表达式验证字符串类型的单个元素的数组。数组不能为空,并且不能以任何特殊符号开头(#除外),并且字符串只能包含数字和字母。
我尝试了什么 [a-zA-z0-9s!@#$%^&*()_ / \ + =。,〜`] +
答案 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