I may have a hole in my regex knowlege.
If I am trying to look for items in a string which may be in the numeric range "item[355-502]" is there an easy way to do this. as far as I can tell I would have to do something like
(35[5-9]|3[6-9][0-9]|4[0-9][0-9]|50[0-2])
I know this also matches for 3550-5020 etc, that should be fine
This, indicates that this can't be done any other way, is this right. i'm in PHP is there a neater way to do this?