本文介绍了如何使用javascript正则表达式从文本中删除项目符号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我只是想从文本中删除项目符号.例如,当我将项目符号文本列表从 MS Word 复制到它与项目符号一起显示的任何文本框时.有人可以告诉我如何删除任何类型的子弹并将其替换为".
我从不同的来源找到了这段代码,但它们对我不起作用.
I am just trying to remove bullets from the text. For example when i am copying bulleted text list from MS Word to any textbox it is showing along with bullet. Can somebody tell me how to remove any type of bullet and replaces it with "".
I have found this code from different sources, But they are not working for me.
var x=" 1. 15-20 years ";
x.replace('•\t.+', '');
alert(x); // i want out put as 15-20 years
谢谢.:-)
推荐答案
试试这个语句...
x.replace(/[•\t.+]/g, '');
这篇关于如何使用javascript正则表达式从文本中删除项目符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!