用正则表达式除字符串中所有标点符号 复制代码 代码如下: <BR> var str="jfkldsjalk,.23@#!$$k~! @#$%^&*()(_+-=|\{}[]';:,./<>??gg g~```gf"; <BR> str=str.replace(/[\ |\~|\`|\!|\@|\#|\$|\%|\^|\&|\*|\(|\)|\-|\_|\+|\=|\||\\|\[|\]|\{|\}|\;|\:|\"|\'|\,|\<|\.|\>|\/|\?]/g,""); <BR> alert(str); <BR> 用正则表达式提取html中文本 复制代码 代码如下: <BR> str='<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档<br/ >'; <BR> str=str.replace(/<[^>]*>|/g,""); <BR> alert(str); <BR>