我想在 Angular 中验证输入表单,字符串必须包含子字符串:
facebook.com
或者
fb.me
和
no whitespaces
例如:
1) randomString -> Fail
2) www.facebook.com -> Ok
3) www.fb.me -> Ok
4) www.facebook.com/pippo pallino -> Fail (there is a withespace after the word "pippo")
对于前 3 个,我有一些工作模式:
pattern = '^.*(?:facebook\\.com|fb\\.me).*$';
但这并不能验证第四个。