Clear trailing spaces after pasted number in Angular

788 Views Asked by At

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,}};
2

There are 2 best solutions below

0
On BEST ANSWER

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()
0
On

You could apply your function when the search input change.

.html

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

.ts

onSearchChange() {
    // Your code
}