Search code examples
angulartypescripttrailing-whitespace

Clear trailing spaces after pasted number in Angular


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

Solution

  • 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()