I'm trying to validate a name field with not allowing spaces in the beginning, also tried this ( Angular Form Input block (space) REGEX ), but that doesn't allow spaces at all.
I have something like this:
<mat-error *ngIf="createEditForm.controls['nameCtrl'].hasError('required')">
Your Name
</mat-error>
Also tried this ( How to validate white spaces/empty spaces? [Angular 2] ), but that allows the field to start with the space, just doesn't allow a empty space with not chars.