用正規表示式除字串中所有標點符號 複製程式碼 程式碼如下: ><BR><BR><script language="script"> 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>