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

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -