• Removes punctuation and special characters from a string. Preserves word characters and spaces only.

    Parameters

    • input: string

      The string to clean.

    Returns string

    String with punctuation and special characters removed.

    export function removePunctuation(input: string): string {
    return input.replaceAll(/[^\w\s]/g, "");
    }