Possible Duplicate:
Regular expression for parsing mailing addresses
I need to split a street address that will have one of two forms.
12B Main Road Main Road 12B
(all parts are optional)
I need to split into street name(Main), street type(Road, already have a list of possible street types), street number (12) and the street number suffix(B).
Any advice?
Will be doing this in C#.