> I wrote this
> 
> 
> s/([A-Za-z]*)/\n$1/g;

Try this: 

s/\W//g;

\w matches letters number and underscores \W matches  anythgiin not letters numbers or 
underscores.
Take a look at tr also it may be able to help you out.


HTH

Dmuey

> 
> 
> It only gets the letters, but I am not sure how to write in 
> the underscore. 
> Any attemps I have made
> on adding the _ get the wrong results e.g -->s/([A-Za-z]_*)/\n$1/g; 
> <---Didn't work.Created a newline
> right before the underscore.

You put the newline there your self with \n if you don't want newline you must remove 
that.

> 
> Assistance would be much appreciated :)
> 
> -T

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to