【发布时间】:2013-01-16 00:57:27
【问题描述】:
我有这个字符串,例如:
one two three four START four five four five six END seven
我想在里面搜索“四”这个词,用REPLACED代替,这样就可以了
one two three four START REPLACED five REPLACED five six END seven
我知道START(.*)END 会给出介于和分隔符之间的单词。
我试过START(?<four>)END,但它什么也没有。
我正在使用 Vbscript。
【问题讨论】:
标签: regex asp-classic vbscript