Can I escape the pipe in specflow (or gherkin)

2020-06-30 08:55发布

I've got a specflow step table that I want to have the | (pipe) character as a part of the content.

Example:

Then the data should be
    | Field     | Value  |
    | SomeField | a|b|c  |

But this doesn't work. How can I escape the pipe character?

1条回答
放荡不羁爱自由
2楼-- · 2020-06-30 09:29

Bah. I can't believe I didn't find this earlier. You CAN escape a pipe with the backslash, but the specflow syntax highlighter gets confused by it.

Then the data should be
    | Field     | Value    |
    | SomeField | a\|b\|c  |
查看更多
登录 后发表回答