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.
提交表单时,我正在尝试使用基础遵守来出错。我无法掌握如何允许任何字符通过(限制 2000)并允许换行:
我的代码
trainerDescription : /^.{0,1999}$/,
由于 javascript 不支持(?s)dotall 修饰符,您可以使用[\s\S]正则表达式匹配任何空格或非空格字符。请注意,这\s将匹配任何类型的空格(垂直或水平)。
(?s)
[\s\S]
\s
/^[\s\S]{0,1999}$/m