修改此正则表达式,使其仅接受在此条件下给定的字符

问题描述 投票:0回答:1

我在Angular 7应用程序中有一个自定义验证器。我需要它仅接受某些字符,但是,它仍在接受我的条件中未包括的字符。

我的自定义验证器:

  static addressFormat(control: AbstractControl): { [key: string]: boolean } {
    const isValidAddress = (/^([a-zA-Z0-9,.#-@%&'])([a-zA-Z0-9,.#-@%&'\s/]?)+$/).test(control.value);
    return isValidAddress ? null : { addressFormat: true };
  }

第一个字符不能为空白,可以正常工作。之后,它应该接受的唯一字符如下:

Numbers 0 to 9

Uppercase letters A-Z (you will see the expression accepts lowercase, but ive taken care of that with making each form control value uppercase inside the input tag)

period .

apostrophe '

hyphen -

comma ,

hashtag #

at sign @

percentage %

ampersand &

slash /

spaces 

问题是,我可以输入*)(+:; =>

regex angular angular7
1个回答
0
投票

改为使用此字符类。它看到的是从#到@的范围,而不是单个字符,这允许出现错误的范围:

 [-a-zA-Z0-9,.#@%&']
© www.soinside.com 2019 - 2024. All rights reserved.