如何使用正则表达式来匹配汉字,如,。‘;’

How can I use Regular Expression to match Chinese characters like ,。‘;’

我正在使用 javascript 将字符串转换成我想要的!! 我可以使用正则表达式并使用什么正则表达式?? 有没有人可以帮助我?

首先,您需要获取这些汉字对应的Unicode编码。这是一个有用的 tool.

character code(base 10) code(hex)
, 65307 0xff1b
。 65292 0xff0c
; 12290 0x3002

其次,使用这些Unicode代码组成正则表达式。

js:

/[\u3002\uff0c\uff1b]/.test('A string contains Chinese character。')
true