标签: regex
我在正则表达式的垃圾 - 总是让自己感到困惑。我被要求检查以下内容,字母为0和1。
li
答案 0 :(得分:1)
您可以使用以下内容:
1: ^1[01]* or ^1[01] if its just starting with 1 and followed by 0 or 1 2: 0*1* 3: [01]*
答案 1 :(得分:0)
标准语法为:
1[01]*
0*1*
[01]*