84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
js expressions régulières chiffres anglais et tous les caractères de ponctuation en avez-vous une copie ?
英文字符+标点+数字的话....貌似是 ascii 码...试试这个/[\x00-\xff]+/g.test('askdfjl123.ksdf.ms.df()*!)(@#&(&(!%!"}|{P}|')
妈个腿, 编辑器把我\给吞了
\d 匹配一个数字字符。等价于[0-9]。grep 要加上-P,perl正则支持 \w 匹配包括下划线的任何单词字符。类似但不等价于“[A-Za-z0-9_]”,这里的"单词"字符使用Unicode字符集。 \s 匹配任何不可见字符,包括空格、制表符、换页符等等。等价于[ \f\n\r\t\v]。 这些满意吗?不满意的话,可以使用[0-9a-zA-Z_,\.]这样写不就可以了?想加什么加什么? /[,\.]/.test("www,")
/[x00-xff]+/g.test('aaa')
英文字符+标点+数字的话....
貌似是 ascii 码...
试试这个
/[\x00-\xff]+/g.test('askdfjl123.ksdf.ms.df()*!)(@#&(&(!%!"}|{P}|')
妈个腿, 编辑器把我\给吞了
/[x00-xff]+/g.test('aaa')