Получил код из stackoverflow при поиске ответа.
Я создал новый файл, вставил приведенный ниже код и добавил директивы в объявления app.moule.ts.
import { Directive, HostListener, ElementRef, Input } from '@angular/core';
@Directive({
selector: '[specialIsAlphaNumeric]'
})
export class SpecialCharacterDirective {
regexStr = '^[a-zA-Z0-9_]*$';
@Input() isAlphaNumeric: boolean;
constructor(private el: ElementRef) { }
@HostListener('keypress', ['$event']) onKeyPress(event) {
return new RegExp(this.regexStr).test(event.key);
}
@HostListener('paste', ['$event']) blockPaste(event: KeyboardEvent) {
this.validateFields(event);
}
validateFields(event) {
setTimeout(() => {
this.el.nativeElement.value = this.el.nativeElement.value.replace(/[^A-Za-z ]/g,
'').replace(/\s/g, '');
event.preventDefault();
}, 100)
}
}
и затем в mat-input я использовал объявление specialIsAlphaNumeric
<mat-form-field color="accent">
<input
matInput specialIsAlphaNumeric
class="form-control"
placeholder="name"
[(ngModel)]="data.projectName"
name="name"
required
minlength="4"
/>
<mat-error *ngIf="formControl.invalid">{{
getErrorMessage()
}}</mat-error>
</mat-form-field>