const s: string = "abs322kl59po@$d0057qn8";
// Create a regular expression to match digits
const digitsRegex: RegExp = /[0-9]/g;
// Use String.prototype.replace to replace digit characters with an empty string
const result: string = s.replace(digitsRegex, "");
console.log(result);
/*
run:
"absklpo@$dqn"
*/