Search found 3 matches

by dhnaves
Fri Apr 04, 2003 11:39 pm
Forum: General
Topic: regular expressions- creating links
Replies: 5
Views: 488

how about this one..

thanks again for helping with the last post...
i am now getting frustrated because i don't know enough yet..

i want to transfrom names like this:

david_h_naves
john_smith
george_w_bush

into this:

d_naves
j_smith
g_bush

i've tried many things, but am stiil too much of a novice

thanks,
by dhnaves
Fri Apr 04, 2003 10:06 pm
Forum: General
Topic: regular expressions- creating links
Replies: 5
Views: 488

just after i sent the post, i was able to figure it out... with : (http://[a-z.a-z.a-z]+) replace: <a href="\1">\1</a> but yours was far better in terms of allowing different urls etc. man i can't believe i've never taken the time to learn this. i've spent so many hrs c/p things into files...
by dhnaves
Fri Apr 04, 2003 8:01 pm
Forum: General
Topic: regular expressions- creating links
Replies: 5
Views: 488

regular expressions- creating links

hi, i'm new to RE. I'd like to know how to change various urls: http://www.yahoo.com http://www.whatever.com http://www.ticketmaster.com into a links like this: (using RE search and replace) <a href="http://www.yahoo.com">http://www.yahoo.com</a> <a href="http://www.whatever.com"...