Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Fitnesse,我需要匹配 2 个可能的输出。
我的脚本表如下所示:
|script|MyClass| |check|doSomething|value|=~/Result1|Result2/|
我的问题是管道 | 在正则表达式中被读取为列分隔符。有没有办法逃脱管道字符?
快速谷歌搜索带来了这个转义序列:
!-|-!
看这里,这里和这里。
为了提高可读性,您可能应该像这样使用它:
|check|doSomething|value|!-=~/Result1|Result2/-!|