On 16 Jun 2012, at 8:48 PM, Kim Mosley wrote:
> I wish to create a space between the letters and numbers in the below list.
> What grep pattern can I use?
>
> Thanks so much!
>
> 5
> B105
> B105
> B121
> B1238.52
> B132
> B132
> B162
> B1624
> B5134
> B5242
> B5242
> B72
> B945
> BD418.3
With the Grep option set, find
([A-Za-z]+)([0-9])
and replace
\1 \2
… note the space between the 1 and the \. I assume there is never a '.'
immediately after the letters.
— F
--
You received this message because you are subscribed to the
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
<http://groups.google.com/group/bbedit?hl=en>
If you have a feature request or would like to report a problem,
please email "[email protected]" rather than posting to the group.
Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>