正则表达式中的字符串替换

比拉尔

我正在尝试使用正则表达式替换字符串中的文本。我使用相同的模式在c#中完成了此操作,但迅速无法按需工作。

这是我的代码:

var pattern = "\\d(\\()*[x]"

let oldString = "2x + 3 + x2 +2(x)"

let newString = oldString.stringByReplacingOccurrencesOfString(pattern, withString:"*" as String, options:NSStringCompareOptions.RegularExpressionSearch, range:nil)


print(newString)

更换后我想要的是:

“ 2 * x + 3 + x2 + 2 *(x)”

我得到的是:

“ * + 3 + x2 + *)”

ramana_k
Try this:

(?<=\d)(?=x)|(?<=\d)(?=\()

This pattern matches not any characters in the given string, but zero width positions in between characters.

For example, (?<=\d)(?=x) This matches a position in between a digit and 'x'

(?<= is look behind assertion (?= is look ahead.

(?<=\d)(?=\()    This matches the position between a digit and '('

So the pattern before escaping:

(?<=\d)(?=x)|(?<=\d)(?=\()

Pattern, after escaping the parentheses and '\'

\(?<=\\d\)\(?=x\)|\(?<=\\d\)\(?=\\\(\)

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章