Answers for "typescript remove whitespace from beginning and end of string"

0

typescript remove whitespace from string

let whiteSpace = ' ABCD ';
let noWhiteSpace = whiteSpace.trim();
Posted by: Guest on June-24-2020
0

how to remove whitespace only from first position of string js

function ltrim(str) {
  if(!str) return str;
  return str.replace(/^\s+/g, '');
}
Posted by: Guest on February-03-2021

Code answers related to "typescript remove whitespace from beginning and end of string"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language