Search found 4 matches

by Jam
Sun Jan 11, 2009 8:28 pm
Forum: WildEdit
Topic: Help with Surrounding Links
Replies: 2
Views: 1704

Wow, that was an amazingly quick reply, and it works perfectly.

ben_josephs, you are much appreciated.

Thanks!
by Jam
Sun Jan 11, 2009 8:05 pm
Forum: WildEdit
Topic: Help with Surrounding Links
Replies: 2
Views: 1704

Help with Surrounding Links

Hi, I have files that look something like this : <a href="http://www.example.com">example</a> <a href="http://www.example.com">example</a> And they need to be changed to this : $advarray[] = '<a href="http://www.example.com">example</a>'; $advarray[] = '<a href="ht...
by Jam
Sun Jun 29, 2008 11:07 pm
Forum: General
Topic: Header and Footer
Replies: 7
Views: 990

You're right, sorry I forgot to mention that these worked with WildEdit.

I don't know if it's possible with TextPad regex, but anyway I don't think TextPad could handle 3000 files open at once, certainly not on my computer - it seems to break somewhere around 500.
by Jam
Sun Jun 29, 2008 10:54 pm
Forum: General
Topic: Header and Footer
Replies: 7
Views: 990

I needed to do the same thing, but I didn't want to use macro or clip library since I had to do it with 3000 files... here is the regex solution in case anyone else is in the same situation :

\A = start of file

\z = end of file

Works perfectly!