Skip to content
Advertisement

Certain number question being missed in regex

I have the following if statement that removes the first instances of a number followed by the period. However, I am noticing it is missing to catch some of them (ex. “16.”, “23.”, “24.”, etc.) and not sure why.

Here is the function:

JavaScript

The following for loop extracts the question from the google form:

JavaScript

The following example is the type of question 16. What is the meaning of life?

And the expected output: What is the meaning of life?

Advertisement

Answer

Try using /[0-9]+./g to catch more than one digit

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement