Re: Insert delimiter between number and alpha

2002-02-07 Thread Jeff 'japhy' Pinyan
On Feb 7, Frank Newland said: >I want to put a delimiter (#) between the rightmost number and the left most >alpha s/(\d)([^\W\d])/$1#$2/; You can't just say (\d)(\w), because \w INCLUDES \d. You could write something like (\d)(?!\d)(\w), which requires that the \w character after the \d NOT

Re: Insert delimiter between number and alpha

2002-02-07 Thread Frank
On Thu, Feb 07, 2002 at 11:27:53AM -0600, Frank wrote: > All, > > My input looks like this > == > 5544#1341343BORIS > 6200#321BOWSER > 89232652#6213VERONICA > === > I want to put a delimiter (#) between the rightmost number and the left most > alpha > Resulting in >

RE: Insert delimiter between number and alpha

2002-02-07 Thread Nikola Janceski
s/(\d)([a-z])/$1#$2/i; that's not a very good way to store women's phone numbers. I like to us a little black book. -Original Message- From: Frank Newland [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 07, 2002 12:28 PM To: [EMAIL PROTECTED] Subject: Insert delimiter betw

Insert delimiter between number and alpha

2002-02-07 Thread Frank Newland
All, My input looks like this == 5544#1341343BORIS 6200#321BOWSER 89232652#6213VERONICA === I want to put a delimiter (#) between the rightmost number and the left most alpha Resulting in 5544#1341343#BORIS 6200#321#BOWSER 89232652#6213#VERONICA Any