I am trying to write a regular expression to match the fractional portion of a street address (e.g. 123 1/2 Broadway). This is what I have:
(?<=\d+ )\d/\d
So basically match any string x/x
that follows any number of digits and a space. For some reason I don't get any matches. If I remove the plus this works okay:
(?<=\d )\d/\d
... but I still don't understand why the first one wouldn't work. Thanks!