I just passed the test for the 1st project but I don’t like the RegEx I had to use.:
const alphaNumOnly = str.toLowerCase().split(/[^A-Z-a-z\d]/).join('').split(/[-]/).join('')
On RegExr [^A-Za-z\d]
matched everything but when I ran a check in the console I was getting 2 dashes for the test palindrome("0_0 (: /-\ :) 0-0")
. So I had to tack on another split.
What did I miss in my regular expression, or is it a bug with VS Code?
And is it okay to post part of the code for a project solution?