#regular-expressions
Read more stories on Hashnode
Articles with this tag
前情提要 时隔多年,又被这个问题坑了一次,事情是这样的,我在一个需求里使用 exec 来验证用户的输入,像这样: const text = /* 用户输入 */ const regex = /^[A-L](上|下|左|右)$/g const match = regex.exec(text) //...