编辑下面的代码:【加编码】
<html> <body> <script> var str="Every man in the world! Every woman on earth!"; var patt=/man/g; var str2=str.replace(patt,"person"); document.write(str2+"<br>"); patt=/(wo)?man/g; patt.compile(patt); str2=str.replace(patt,"person"); document.write(str2); </script> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂