如何使用正则表达式匹配中文字符,例如,'';'

时间:2017-05-21 07:51:25

标签: javascript regex regula

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

1 个答案:

答案 0 :(得分:0)

首先,您需要为这些中文字符获取相应的Unicode代码。这是一个有用的tool

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

其次,使用这些Unicode代码形成regexp。

JS:

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