假设我们有一个数组(新行分隔),例如:
hello
example.com
test.
something.
aspacefront
test
test.us
成为一个数组
hello
example(dot)com.
test.
something.
aspacefront
test
test(dot)us
这可以用正则表达式完成吗?
我要循环数组然后用这个正则表达式替换为(点),\b[^a-zA-Z\40]\b.
但它将是example(dot)om而不是example(dot)com。