0

powershell 的正则表达式实现是否具有联合(“或”)函数,还是我必须分别匹配多个正则表达式?

IE:

PS C:\Users\nacht> ("hello there" -replace "el", "xx") -replace "er", "xx"
hxxlo thxxe

我希望能够用这样的单曲做到这$re一点:

PS C:\Users\nacht> "hello there" -replace $re, "xx"
hxxlo thxxe
4

1 回答 1

0

就在我输入我的问题时,我决定尝试几件事,结果证明|操作员似乎做到了!

PS C:\Users\schwabg> $re = "el|er"
PS C:\Users\schwabg> "hello there" -replace $re, "xx"
hxxlo thxxe

没有记录在顶级谷歌页面中......

于 2013-10-09T02:33:44.207 回答