Const
Captures a valid Roman numeral sequence.
Capture groups:
0
1
2
3
4
romanNumeralRegex.exec("M") // [ "M", "M", "", "", "" ]romanNumeralRegex.exec("XII") // [ "XII", "", "", "X", "II" ]romanNumeralRegex.exec("MCCXIV") // [ "MCCXIV", "M", "CC", "X", "IV" ] Copy
romanNumeralRegex.exec("M") // [ "M", "M", "", "", "" ]romanNumeralRegex.exec("XII") // [ "XII", "", "", "X", "II" ]romanNumeralRegex.exec("MCCXIV") // [ "MCCXIV", "M", "CC", "X", "IV" ]
Captures a valid Roman numeral sequence.
Capture groups:
0
1
2
3
4