如何使用jquery删除字符串中的后续符号/特殊字符¶

时间:2012-02-01 13:42:58

标签: javascript jquery

如何使用jquery

删除字符串中的以下符号/特殊字符

比较两个字符串时遇到问题。 当我计算差异时,上面提到的符号是追加的。 我也在我的本地应用程序中测试它 请查看以下链接。

http://neil.fraser.name/software/diff_match_patch/svn/trunk/demos/demo_diff.html

3 个答案:

答案 0 :(得分:6)

var s = "This is a string that contains ¶, a special character.";
s = s.replace(/¶/g, "");

收率:

"This is a string that contains , a special character."

这将删除所有出现的角色。没有必要的jQuery - 只是vanilla浏览器提供的JavaScript。

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/replace提供了一些其他详细信息。

答案 1 :(得分:1)

不需要jQuery,你可以通过使用原生javascripts replace函数来实现它:

var myString = "ABC¶DEFG"
alert(myString.replace("¶", ""))

Example fiddle

答案 2 :(得分:0)

javascript替换功能应该有效。如果找不到该字符,请尝试使用unicode或ansi等效字符。

http://www.alanwood.net/demos/ansi.html