Skip to content
14paxton edited this page Jul 14, 2023 · 2 revisions

Leave only Alpha Chars and remove space

 const removeSpecialChar = /[^a-zA-Z\d ]/g
const replaceSpace = /\s/g
const onlyAlpha = (fileName
                   ? fileName
                   : title).replaceAll(removeSpecialChar, '')
const strippedFName = onlyAlpha.replaceAll(replaceSpace, '_')

Clone this wiki locally