Home > Net >  Clear trailing spaces after pasted number in Angular
Clear trailing spaces after pasted number in Angular

Time:05-14

How do we strip out spaces at the end of the 10digit number when user copies it from place (like email or word docs etc) and pastes it in the search bar?

But this function is only working when we hit enter. I want blank spaces to be removed as soon as we paste number.

public onSearchPolicy( event: any){
 let search policy number= event.target?.value?.trim();
if ( searchPolicyNumber){
let searchPolicyObject = {
policy : searchPolicyNumber,}};

CodePudding user response:

You could apply your function when the search input change.

.html

<input (ngModelChange)="onSearchChange()" />

.ts

onSearchChange() {
    // Your code
}

CodePudding user response:

Great question, just keep it simple and:

  1. Get the element your pasting it in

document.getElementById or however your binding it in Angular (@ViewChild, etc).

  1. Then remove the spaces - yourElementText.trim()
  • Related