拆分字符串并指定类似的字符。 :
我正在使用JavaScript编写汇编解析器(不要问为什么)
需要拆分单词,但是字符之类的字符。 ,:需要是单独的数组元素
作为解决方案,我可以使用.split('')
,只需检查includes(/[,|。|:]// g)
找到索引并在该元素之后推动,但是我认为该任务有更好的解决方案。
例子
input: 'mov al, bl'
output: ['mov', 'al', ',', 'bl']
I'm writing an assembler parser using JavaScript (don't ask why)
Need to split words, but characters like . , :
need to be separate array element
As a solution i can use .split(' ')
and just check with .includes(/[,|.|:]/g)
find index and push after that element, but I think there is a better solution for this task.
Example
input: 'mov al, bl'
output: ['mov', 'al', ',', 'bl']
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
split()
中使用正则表达式将最终数组中的分隔符字符包括在内。You can use regular expressions in
split()
to include separator characters in final array.