View Single Post
Posts: 451 | Thanked: 334 times | Joined on Sep 2009
#417
Originally Posted by woody14619 View Post
I got this too, and know how to fix it. In the rule file you have:
Code:
St.;Street
In the case of regex, the dot (.) matches a single character. So:
Code:
Turn right on <emphasis>Jay St</emphasis>
becomes:
Code:
Turn right on Jay Street /emphasis>
Makes sense, but I thought there was no regexp support so far, that it was just a straight replace, isn't that so?

If there's regexp then this should do it:
Code:
St\.;Street