A
A delphi
Unregistered / Unconfirmed
GUEST, unregistred user!
用javascript 正则表达式 如何将 a b c 三个字符替换为 <b>a</b> <b>b</b> ( 积分: 100 )<br />用javascript 正则表达式 如何将 a b c 三个字符替换为 <b>a</b> <b>b</b> <b>c</b>
我用 s.replace(/(a)/gi,"<b style=''background-color:red;''>$1<//b>"';
我用 s = s.replace(/(b)/gi,"<b style=''background-color:red;''>$1<//b>"';
我用 s = s.replace(/(c)/gi,"<b style=''background-color:red;''>$1<//b>"';
结果 前面被替换的又被重复替换了 , 多个字符如何同时替换,
有时 a b c可能为 其他 test window color 等多个词
我用 s.replace(/(a)/gi,"<b style=''background-color:red;''>$1<//b>"';
我用 s = s.replace(/(b)/gi,"<b style=''background-color:red;''>$1<//b>"';
我用 s = s.replace(/(c)/gi,"<b style=''background-color:red;''>$1<//b>"';
结果 前面被替换的又被重复替换了 , 多个字符如何同时替换,
有时 a b c可能为 其他 test window color 等多个词