标签: regex
我正在尝试编写正则表达式以检查域和路径之后的某些上下文值路径。我写了这个有效的正则表达式。是否有任何简单的版本没有使用或?
^/(creditcards|creditcards/.*)?$ To match: / /creditcards /creditcards/something
答案 0 :(得分:1)
试试这个:
^/(creditcards(/.*)?)?$