please help I have the regex line ^((?![<>=^@#]).)*$ which checking not ordinary symbols in an input field, it's ok but I need to add for this line one more condition , my line need to have vs.
For example when we have the name of sport game like this Patriots vs. Tigers
How can I complete my ^((?![<>=^@#]).)*$ condition and add rule for checking vs. in line (input field must have vs.) ?
It will be so cool if conditional also check spaces around vs. at left and at right, because for example Patriotsvs.Tigers is not good and need to show error also
/^\w+\s+vs\.\s+\w+$/^((?![<>=^@#]|\bvs\.\B).)*\bvs\.\B((?![<>=^@#]).)*$.(?![<>=^@#]).is equivalent to[^\r\n<>=^@#].