3
votes

I am looking for a regular expression that prevents special characters and only allows letters, numbers, dash (-), underscore (_) an space.

This regex works great but it doesn't allow for spaces between words.

For example, if enter "123 456", i get custom error i defined. How i can tweak this reg to allow space between words as well in addition to letters, numbers, dash and underscore.

<input type="text" name="serialNumber" data-ng-model="SerialNumber" ng-pattern="/^[a-zA-Z0-9_-]*$/" maxlength="100"/>
<div data-ng-if="Form.serialNumber.$error.pattern" class="error">Please enter valid serial number</div>
6
did you want to allow spaces or hypen or underscore at the start or at the end? - Avinash Raj
DO you want to allow empty value? - vks
@ Avinash Raj and @vks yes i would like to allow only hypen or underscore at the start and not space. - immirza
@Avinash Raj Only alphanumeric, _, - and space between words. - immirza

6 Answers

8
votes

I think I found a very simple and basic solution for my requirement i.e. to allow alphanumeric, _, - and space. Space should be allowed between word and not leading and trailing space.

ng-pattern="/^[a-zA-Z0-9\_\- ]*$/"

Anybody find issue with it , let me know please.

6
votes

If you want to allow a space in your input, you need to include it into the character class.

According to docs:

ngTrim (optional)
If set to false Angular will not automatically trim the input. This parameter is ignored for input[type=password] controls, which will never trim the input.
(default: true)

So, if your input field is not password field I'd recommend:

ng-pattern="/^[\w -]*$/"

The \w stands for [A-Za-z0-9_] in JS, the underscore does not have to be escaped and the hyphen at the end of the character class does not need escaping either.

0
votes
^[a-zA-Z0-9_-]+(?:\s+[a-zA-Z0-9_-]+)*$

Construct your regex this way to capture words and not spaces at start or end.

0
votes

You may try the below lookaround based regex.

^(?!\s)(?=$|.*[a-zA-Z0-9_-]$)[a-zA-Z0-9_\s-]*$
0
votes

Use this pattern to solve the issue

ng-pattern="/^(\D)+$/"
0
votes

pls ng-pattern="/^[\w -]*$/"