objective c - Regular expression for separating words by uppercase letters and numbers -
i wondering if might know regular expression turn this:
west4thstreet
into this:
west 4th street
i'm going add spaces string in objective-c.
thanks!
i don't know want put in spaces, try [a-z.-][^a-z .-]
, put space between 2 characters in each match.
Comments
Post a Comment