Possible Duplicate:
How do you match only valid roman numerals with a regular expression?

Hi,

How do I match regex to something like

[i])
[ii])
[iii])
[iv])

and so on...

Thanks

link|improve this question

72% accept rate
Yes, the square brackets are a part of what I want to match – y2p Mar 1 '11 at 19:51
feedback

closed as exact duplicate by Brian Agnew, Yuriy Faktorovich, KennyTM, aioobe, Robert Harvey Mar 1 '11 at 20:14

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted
/^\[[ivmcldx]+\])/

should catch the most common roman numerals. It won't stumble on invalid numerals like iiix, though.

link|improve this answer
The ) will need to be escaped though. – Bart Kiers Jun 10 '11 at 18:48
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.