标签: php regex
我希望PHP正则表达式符合以下条件:
字母必须在数字后面。
答案 0 :(得分:0)
具有第一个数字的正则表达式将由.customerChoice { display: block; height: 80px; text-align:center; }表示\d表示一个或多个,然后与+结合使用,以获得包含小写和大写字母的字母按[a-zA-Z]。所以整体正则表达式将是+
.customerChoice { display: block; height: 80px; text-align:center; }
\d
+
[a-zA-Z]