How do you create a regular expression that allows you to have files like ths:
Stuff_Dev
Greg_Files
myThings_
_default


I wrote this


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



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.


Assistance would be much appreciated :)

-T

_________________________________________________________________
Get McAfee virus scanning and cleaning of incoming attachments. Get Hotmail Extra Storage! http://join.msn.com/?PAGE=features/es



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



Reply via email to