Search found 4 matches

by brynlund
Thu Mar 06, 2008 7:32 am
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Converting a reference string to lowercase
Replies: 7
Views: 10654

Where would I find the action field in version 6.5.1? I've looked and can't find it anywhere.
by brynlund
Thu Feb 28, 2008 6:09 am
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Converting a reference string to lowercase
Replies: 7
Views: 10654

The result isn't exactly what I'm after. I'm trying to end up with the following hyperlink:
<a href="http://www.xxx.com/Dir1/Dir2/Dir3/i-$1-$2.pdf">$0</a>

Where parts of the path could potentially be upper and/or lower case. However, I need to make ONLY what appears in the string from $1 to be ...
by brynlund
Fri Feb 22, 2008 7:01 am
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Converting a reference string to lowercase
Replies: 7
Views: 10654

I haven't been able to figure out how to do that. I can't find any examples in the user help files and nothing I've tried actually works. Based on the previous example, what would that look like?
by brynlund
Fri Feb 15, 2008 8:14 am
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Converting a reference string to lowercase
Replies: 7
Views: 10654

Converting a reference string to lowercase

I am performing the following search and replace:

[Ii]-(\w{3,})-(\d{3,})
(eg. I-ABC-123)

Replace with:

<a href="http://www.xxx.com/dir1/dir2/dir3/i-$1-$2.pdf">$0</a>

This is basically working, however the string that I receive in $1 (in the above example, ABC) is currently in uppercase and I ...