Regexp实体
Hall ?([0-9]{1,2})?
案例想要接受:
大厅//不接受
Hall1 // Accept
Hall 1 // Accept
但是案例1不满足Regexp
如果只接受最后两个,则不应将组设为可选
Hall ?[0-9]{1,2}
Regex demo