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.
我有一个 specflow 步骤表,我希望将|(管道)字符作为内容的一部分。
|
例子:
Then the data should be | Field | Value | | SomeField | a|b|c |
但这不起作用。我怎样才能逃脱管道字符?
呸。我不敢相信我没有早点找到这个。您可以使用反斜杠转义管道,但specflow语法荧光笔会被它弄糊涂。
Then the data should be | Field | Value | | SomeField | a\|b\|c |