例如,我去街面“1234 West 23rd Street”。 我只想打上第一个街号,在每一街号之间放下空间,如“1 2 3 4 West 23rd Street”。
Using the simple expression like "([0-9])"
and replacing it with "$1 "
almost works, except I want it to stop after the first space and not match, per the above example, the "23" in "23rd" as well.