Correction:

[^/%]*)%?([^/%]*
into
([^/%]*)%?([^/%]*)+ which means one or more repetitions of that pattern.

This was untested. There is obviously a problem with the parentheses. You could try this:
[^/%]*)%?([^/]*
but this will only replace the first %53, not the second one. That doesn't do.
It seems that you need at least 3 steps more.
1. take tFull,
2. replace % with "" in tFull, put that in a variable like tModified
3. replace  tFull with tModified in tFilelist.

Best,
Marielle




_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to