如果数字以javascript开头,如何对字符串进行切片
我有这样的字符串
total sales 234 rs
total cost 651 rs
,我只想得到
最终结果应该是这样的,
total sales
total cost
我怎样才能得到它,请帮助,谢谢
I have strings like these
total sales 234 rs
total cost 651 rs
and I want to get only
end result should look like this
total sales
total cost
how can i get that please help thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设您总是想在第一个数字之前将其切断,您可以找到第一个数字的索引:
然后获取子字符串:
Assuming you always want to cut it off just before the first number, you could find the index of the first number:
And then just get the substring:
你可以这样做:
You can do something like this:
假设字符串可以包含两个以上的主要单词
例如
商品总成本 200 卢比
,然后使用以下函数
Assuming that the string can contain more than two main words
For eg
Total goods cost 200 rs
then use the below function