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.
我想匹配字符串'364.1','364.10','364.11',但没有别的。我知道我可以使用
select '364.1' regexp '364\.1$|364\.1[01]' ---> 1
但是有没有更优雅的方式,我的理想是这样的,我用难以捉摸的部分填充下划线,表示在该位置匹配字符串的结尾、0 或 1:
select '364.1' regexp '364\.1[_01]' ---> 1
像'^364\.1[01]?$'什么?
'^364\.1[01]?$'