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.
我想只允许使用 Symfony 1.4 的 sfValidatorRegex 的文本框使用小写字符或“_”字符。
我使用了不同类型的模式,例如/^[a-z_]+$/i但它们对我不起作用。
/^[a-z_]+$/i
所以如果有人知道,请帮助我。
正确的模式是'/^[a-z_]+$/'
'/^[a-z_]+$/'