ZDNet's Shareware Showcase is now exclusively featuring TextPipe Pro v5.3 - read their review and download TextPipe at: ...
Simon Carter
launch@...
Dec 5, 2000 12:44 pm
25
Hi' group... How do i delete from the beginning of a textfile and to where a particular string is found? /ao...
anders@...
Dec 14, 2000 11:14 pm
26
Hi Anders, You'll need to mark the start of the file specially first (using an "Add header" filter with some special text like "##START##"). Then add a search...
launch@...
Dec 15, 2000 1:59 am
27
I collect R.E. Related e-mail addresses. Heretofore, I've been bringing the files into MS WORD and, using ^H, finding and replacing and so forth to get a...
Charles Senf
computerguy@...
Dec 27, 2000 3:00 pm
28
Hi Charles, Yes, this is certainly the case. I would recommend that as part of the TextPipe filter process you merge all files together, then sort and discard ...
Simon Carter
launch@...
Jan 1, 2001 6:23 am
29
Hi, I am using Matching (grep) and Non-Matching (inverse-grep) filters to select lines from multiple files containing the text I am looking for. When I was ...
allanlewis@...
Jan 3, 2001 11:12 pm
30
Hi, I would like to join two lines within a file. I considered using the replace command to eliminte the C/R at the end of the first line - however I did not...
Tim Whitney
tfwhitney.data-brain@...
Jan 4, 2001 3:32 am
31
Hi. Tim! :) i'm really sorry, i have no idea what you're talking about. can you inform me? i don't have any suggestion. Anyway, thanks for the e-mail. ANNA ......
anna royce tabernilla
annaroyce@...
Jan 4, 2001 7:27 am
32
Hello to All, Excuse the inverted layout but I thought seeing an example first might make answering the questions easier. Then again you probably won't be as...
Leon Sisco
bldgno8@...
Jan 4, 2001 5:17 pm
33
Hi Leon, You can use the Email Menu\Remove Email Headers filter to remove the email header at the start of a file (this only removes the first set of header if...
Simon Carter
launch@...
Jan 4, 2001 10:20 pm
34
Hi Alan, TextPipe doesn't currently support this, but I see no reason why it can't. I'll try and squeeze it into an interim release soon. Regards, Simon -- ...
Simon Carter - Crysta...
launch@...
Jan 5, 2001 3:10 am
35
Hi Tim, Try reading the online help - just put the cursor in the field and press F1. Or right click and use the menu to enter it. If all else fails, just type ...
Simon Carter - Crysta...
launch@...
Jan 5, 2001 3:10 am
36
Hi, I am just wondering what is the difference between [^"]* and [^"]+ The results seem to be the same. The second question is how can be selected the portion...
AKaoukhov@...
Jan 13, 2001 7:50 pm
37
... It's a small difference. The first regex matches 0 or more characters that are not a double-quote. The second regex matches 1 or more characters that are...
David Johnson
dajo-egroups@...
Jan 14, 2001 2:51 am
38
... Non-greedy expressions are slated for a future release. I almost had it in 5.1, but obscure memory bugs kept it from going in. Regards, Simon -- Simon...
Simon Carter
launch@...
Jan 14, 2001 4:57 am
39
... Thank you. Now it makes much more sense to me. If I develop the idea further one can imagine text starting with ". Then if one do not want miss that case ...
Alexandre Kaoukhov
AKaoukhov@...
Jan 14, 2001 2:47 pm
40
* I can't think of a better way. Standard regular expressions, as in ... Non-greedy expressions are slated for a future release. I almost had it in 5.1, but...
Alexandre Kaoukhov
AKaoukhov@...
Jan 14, 2001 2:54 pm
41
I am using Matching (grep) and Non-Matching (inverse-grep) filters to select lines from over 5,000 program files containing the text I am looking for. I need...
allanlewis@...
Jan 16, 2001 4:28 pm
42
Try this: Add a "Merge (Join) files" to the end of your filter list, then a header of a single blank line. Then add an "Extract Matches" with the following...
David Johnson
dajo-egroups@...
Jan 16, 2001 6:37 pm
43
Hi Allan, You cannot use more that 2 greps at a time to search for different matching strings - the first grep DISCARDS all other text. This is why you Can't...
Simon Carter - Crysta...
launch@...
Jan 17, 2001 1:42 am
44
Here's what's new in 5.3.3: * Fixed long-standing error on application exit And from 5.3.3: * Fixed regexp bug with characters sets [] involving ranges of ...
Simon Carter - Crysta...
launch@...
Jan 17, 2001 10:45 pm
45
Hi, I have a rather silly & easy question, but I can't get it done. How can I remove everything following the first space, to the end of the line. I have a...
mikrono@...
Jan 24, 2001 3:05 pm
46
Search/Replace (\S+)[^\r\n]+] with $1 ... of the line. ... encountered and everything following that to the end of the line, and that on every line in the...
David Johnson
dajo-egroups@...
Jan 24, 2001 4:29 pm
47
I'm processing some free-form text fields. We want to identify and flag names and nasty words from these comments on some surveys. The comment fields are...
Vernee Stevens
lilybear@...
Jan 27, 2001 1:05 pm
48
Why not use the "Remove Menu\Remove blanks from end of line" filter? Regards, Simon -- Simon Carter, mail@... T e x t P i p e - Fix Text...
Simon Carter - Crysta...
launch@...
Jan 29, 2001 1:15 am
49
Hi Verne, Once you have a word list, you can use a command list file (/Z=<filename) to give TextPipe a whole string of parameters of the following form: ...
Simon Carter - Crysta...
launch@...
Jan 29, 2001 6:25 am
50
I think he wants to remove the first space and everything following it, which could be non-spaces, up to the end of the line. I made a mistake in my previous...
dajo-egroups@...
Jan 30, 2001 10:26 pm
51
Here's what's new in 5.3.5: * All "delete file" operations now use the Recycle Bin - helping to prevent you accidentally losing the file you are working on *...
Simon Carter - Crysta...
launch@...
Jan 31, 2001 3:37 am
52
Hi, I want to find lines that contain two sets of characters, like "bntp" and "typ_cd". Assume that "bntp" is always before "typ_cd" on any line they both...
allanlewis@...
Feb 6, 2001 9:32 pm
53
Does bntp.*typ_cd work? You should check out the help page on regular expressions. ... like "bntp" and "typ_cd"....