JavaScript Regex - Entfernen Sie die Whitespace von Anfang und Ende
let hello = " Hello, World! ";
let wsRegex = /^\s+|\s+$/g;
let result = hello.replace(wsRegex, "");
taylor