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
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