Hello Does anybody know of any html character set conversion tables (Decimal) to use with textpipe? I am trying to replace certain codes mainly (microsoft word...
Several resources here. http://www.bbsinc.com/iso8859.html You'll probably have to use textpipe to create the search and replaces themselves for you. In other...
Hi Michelle, The easiest way to do this is with a 'select lines NOT matching', with text of: ^......(80 dots)......+$ This will match all lines without 80 or...
Hi folks, TextPipe Pro 6.1 will be released on January 27, 2002, and will be accompanied by a price rise from $109 to $129. If you buy now, you will receive...
Try a simple Visual Basic program with a '1 to 5' counter so that every fifth line has a unique character written, then reprocess with TextPipe. ... From:...
G Thurman
gthurman@...
Jan 25, 2002 7:19 am
226
That's so simple... 1. Add line numbering beginning from 2 with increment 2 %5.5d 2. Select lines matching RegExp ^....0 3. Remove 5 left columns That's it. :)...
Hi Sarpajian, There is a demo of this in the vbscript\sub filter demo.fll file. It demonstrates using a subfilter to select all even numbered lines, and is ...
The latest and greatest release of TextPipe Pro is out now! And it's packed full of new features - see the What's New list below. ** Please tell your friends...
Is it possible to use TextPipe to convert Mac SIT or HQX files to a PC equivalent using the demo version of the program? If so what filters are appropriate? ...
Hello, I wish to work with textfiles containing email-data. Textpipe should seperate each email and write a filename depending on a counter, e.g. 0001.eml,...
Hi Is it possible to use Textpipe for the following: (a) Search for string "Keyword=MARITIME" in text files, then (b) Move or copy all files containing a match...
I'm using a pattern to replace text in an SVG document I'm trying to replace "<g>[\0-ÿ]*</g>" replace with "hello" and I get the error message "\DDD You must...
... You need \000 in the regexp instead of just \0 Putting in "<g>[\000-ÿ]*</g>" seems to run OK on the Trial Run. Best wishes Bob -- Bob Janes Coach...
Hi, ... I don't believe that you can use TextPipe in this way. It appears to me to be designed to work 'within' a text file. You can easily do what you want...
Hi Lawrence, You can easily get TextPipe to generate a batch file with the names of files to move, in the form ren "filename" "target directory" by using the...
You could use ActiveX scripting to summarize the data: option explicit dim last_unit, unit, sqft, min_sqft, max_sqft, lease, min_lease, max_lease function...
Thanks... When I run your script, I get 1/1 597-597 515-515 1/1 597-611 515-564 1/1 597-700 515-587 1/1 597-800 515-720 2/2 815-815 771-771 2/2 815-900 771-797...
Nevermind regarding my last question....but I do have a different, related one. When I run the below script, it's in the middle of alot of other data which I...
Hi syaktin, You'll have to code it manually using a VBScript filter. There is a similar example filter (in the vbscript folder) that splits records from one...