Open In App
Related Articles

Angular forms MaxLengthValidator Directive

Improve Article
Improve
Save Article
Save
Like Article
Like

In this article, we are going to see what is MaxLengthValidator in Angular 10 and how to use it.
The MaxLengthValidator is used to synchronize a standalone FormControl instance to a form control element

<input maxLength ="number">

Exported from:

  • ReactiveFormsModule
  • FormsModule

Selectors:

  • [maxlength] [formControlName]
  • [maxlength] [formControl]
  • [maxlength] [ngModel]

Approach: 

  • Create the Angular app to be used
  • In app.component.html set maxLength to input so when you are putting data in that input element you cannot exceed the max constantly.
  • Serve the angular app using ng serve to see the output.

 

Example:

app.component.html




<span>GeeksforGeeks</span>
<input type="text" maxlength="12">
<input maxlength="5">


Output:

Reference: https://angular.io/api/forms/MaxLengthValidator

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 03 Jun, 2021
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials