Skip to content
Advertisement

Javascript: Regex to convert a numbered list string to an array of items

I am trying to convert a numbered list into an array of items. This is what I have so far:

JavaScript

This only produces the following output:

JavaScript

What I would like is something like this:

JavaScript

Why is it matching only one item out of this string? What am I doing wrong and how can I fix it?

Advertisement

Answer

Your regex does not foresee a dot after a number when there is no second number following it. It also requires a space after the number, but you have a case where there is no such space. So make it optional.

Also, use the s modified so . also matches newline cha

If a new item can start on the same line, you’ll need a look-ahead to foresee where a match must end.

Correction:

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