Learn Form Validation by Building a Calorie Counter - Step 34

Tell us what’s happening:

I have to replace class [0-9] in my regex with shorthand \d.

Your code so far

}

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

function isInvalidInput(str) {
  const regex = /\d +e \d+/i;
}
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0

Challenge Information:

Learn Form Validation by Building a Calorie Counter - Step 34

please remove the spaces from inside your regex! The spaces have meaning inside the regex
image

1 Like

Ilenia.It did work.(“Asante”).

Did you solve this? I typed
function isInvalidInput(str) {
const regex = /\d+e\d+/i;
const result = str.match(regex);
return result;
}
but code did not pass…

Welcome to the FCC forum. Please create your own topic to the challenge step.
@davidxvaz

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.