abstract:
pattern = "^#{r1}#{r2}#{r3}#{r4}$"
roman = Regexp.new(pattern)
end
How would I go about testing this program, is there anything I need to add, to proceed from here?
Any help would be much appreciated,
Thanks,
Dan
Hi, I just need a little help with a problem Iam doing, I think I've almost figured it out I just need some help finishing it. Ive been asked to write a regular expression to see whether a string represents a valid roman numeral. So I did that pretty much..
I=1
V=5
X=10
L=50
C=100
D=500
M=1000
r1 = "M{0,1}"
r2 = "(CM|CD|D?C{0,3})"
r3 = "(XC|XL|L?X{0,3})"
r4 = "(IX|IV|V?I{0,3})"
pattern = "^#{r1}#{r2}#{r3}#{r4}$"
roman = Regexp.new(pattern)
end
How would I go about testing this program, is there anything I need to add, to proceed from here?
Any help would be much appreciated,
Thanks,
Dan |