在模式上分割字符串
var a="##55##data1!!##66##data4545!!##77##data44!!";
如何删除##664545##数据!!从字符串
编辑:如果我们知道字符串中的起始值,即,##66## 和结束值,即,!!
在主字符串中如何删除从起始模式开始的字符,起始模式之后直到结束模式的数据
My expected output will be ##55##data1!##77##data44!!
var a="##55##data1!!##66##data4545!!##77##data44!!";
how to remove ##664545##data!! from the string
Edit:if we know the start value in a string i.e,##66## and the end value ie,!!
In the main string how to remove characters starting from the start pattern,data after the start pattern till the end pattern
My expected output will be ##55##data1!##77##data44!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 javascript 和 regex -
如果您想对此进行参数化,那么您可以按照下面给出的方式执行操作,其中 start 和 end 是您的参数 -
Using javascript and regex -
If you want to parameterize this then you can do as given below where start and end are your parameters-
正则表达式方式,使用全局标志
g
来捕获所有匹配项:Regex way, with global flag
g
to catch all matches: