On Tue, May 11, 2010 at 11:04:06AM -0700, Michael Heth wrote:

> I have a series of lines with this type of data
> 
> Moto Guzzi 1000 Quota Injection1991
> Moto Guzzi 1000 Quota Injection1992
> Moto Guzzi 1000 S1990
> Moto Guzzi 1000 S1991

> All I want to do is put a tab before the years which are always the  
> last 4 characters in the line
> 
> Moto Guzzi 1000 Quota Injection<tab>1991
> Moto Guzzi 1000 Quota Injection<tab>1992
> Moto Guzzi 1000 S<tab>1990
> Moto Guzzi 1000 S<tab>1991

Find:
(\d{4})$

Replace:

\t\1

Ronald

-- 
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.

Reply via email to