Hi all! Some words in addition to my previous message. I examined some scripts written by others and found that this regular expression "<A HREF=.+>" should be...
Yuri Gulyaev
ygulyaev@...
Jul 2, 2001 10:29 am
109
Yuri, you might also consider the "tokenize" technique described in message 104: http://groups.yahoo.com/group/textpipe-discuss/message/104...
David Johnson
drjohnson@...
Jul 2, 2001 3:52 pm
110
Hi, With TextPipe, I can create a table from a database using the database filer with the input: SELECT [replacement],[filename] FROM tbl. For example, this...
Jordan Rosenthal
jr@...
Jul 3, 2001 7:50 pm
111
Hi, I have a CSV file where I need to move the last field to the begining of the line. Any idea as to how I would go about this? -d Daniel Mathews...
dmathews@...
Jul 3, 2001 8:29 pm
112
... Daniel, this should work. ... The "Select lines matching [^]" breaks the input into lines and feeds them one by one to the subfilter "Replace Pattern...
David Johnson
drjohnson@...
Jul 4, 2001 4:53 pm
113
Jordan, Check out the entries in the help file about "Converting Search/Replaces from other sources" and "Command Line Options" You could create a command file...
David Johnson
drjohnson@...
Jul 5, 2001 1:24 pm
114
Dave, Thanks, but that doesn't exactly do what I want. I can (using TextPipe) create a text file such as: /s=<s1> /r=<r1> filename1 /g /s=<s2> /r=<r2>...
Jordan Rosenthal
jr@...
Jul 5, 2001 6:17 pm
115
Did anyone have any ideas on my DecisionCube error? I am really stuck and at a loss what to do next!!...
Alexander W. Cope-Nor...
alexcn@...
Jul 6, 2001 2:58 pm
116
Alexander, Could you export your filter and post it to the group? (File|Export to Clipboard) But, really, DecisionCube doesn't sound like anything to do with ...
David Johnson
drjohnson@...
Jul 6, 2001 3:24 pm
117
David, I would dearly love to be able to post the filter to the group but it happens on program startup before I even open or setup a filter. If I simply...
Alexander Cope-Norris
alexcn@...
Jul 7, 2001 10:49 am
118
Hi Alex, When TextPipe starts up, it 'connects' to the Windows database objects so that it can use them later on. It may be this action that is causing the...
Crystal Software
launch@...
Jul 7, 2001 11:09 am
119
I recently got the following filtering/ordering task: 1. remove all HTML/SGML tags. 2. remove all ; . .. and ... 3. check if the words on the file exists in...
Michael Lugassy
cfusion@...
Jul 7, 2001 11:32 am
120
Yet another weird task I've gotten and couldn't handle: loop for all html files in the directory: loop for every <IMG tag in the file drop everything except: ...
Michael Lugassy
cfusion@...
Jul 7, 2001 11:36 am
122
I found some information on cubes here....you need to search for "decision cubes" rather than "decisioncube" as one word. Trouble is, it means nothing to me...
Alexander Cope-Norris
alexcn@...
Jul 9, 2001 2:16 pm
123
Hiya, Well while the message may appear to originate from SQL Server....there is one problem.....I dont have SQL Server installed, just MS Access. I have been...
Alexander Cope-Norris
alexcn@...
Jul 9, 2001 2:16 pm
124
That's a really good idea. Thank you David....
Yuri Gulyaev
ygulyaev@...
Jul 9, 2001 5:17 pm
126
I have a project that I have a special character(/253) in column 1 and when this character occur I need to replace a string that is in 3 lines above that...
Conatser, Robert
Robert.Conatser@...
Jul 13, 2001 12:18 am
127
This probably works now but may not work in future versions of TextPipe as this regular expression ([^\r\n]*), should actually find the _first_ comma, not the...
Yuri Gulyaev
ygulyaev@...
Jul 16, 2001 12:52 am
128
Hi Yuri. Standard regular expressions are "greedy." They will grab as much as they can even if a match could be found earlier in the text. This is also...
David Johnson
drjohnson@...
Jul 16, 2001 3:03 am
129
Hello, I am using the following filter to select text from multiple files in a directory and boil it down to just the two fields I am interested in. ... In my...
allanlewis@...
Jul 31, 2001 6:23 pm
130
You can replace every other line break like this: Replace [([^\r\n]+)\r\n([^\r\n]+)] with [$1 $2]...
David Johnson
drjohnson@...
Aug 1, 2001 2:51 am
131
Hi, I'd like to copy (extract?) some specific html tags and the text strings they enclose from a file, e.g.: <DIV class=topic>text text text</DIV> in order to...
arml@...
Aug 5, 2001 5:25 pm
132
Rick, Consider the "tokenizing" technique described in message 104: http://groups.yahoo.com/group/textpipe-discuss/message/104...
David Johnson
drjohnson@...
Aug 5, 2001 5:29 pm
133
... David, Thanks for the suggestion. I've tried something else in the meantime, and the results leave me more puzzled than before. I crafted the following...
arml@...
Aug 6, 2001 3:06 am
134
Hi, I'm setting up TextPipe Pro and would like to have it default to a particular filter when it opens up. Is this do-able? Also if I could have it...
glenn-mcalister@...
Aug 10, 2001 11:34 pm
135
Hi Glenn, You can use the /F=<filter filename> option in TextPipe's Start Menu shortcut to get it to automatically load a filter on startup. I'm considering a...
Simon Carter - Crysta...
launch@...
Aug 12, 2001 12:30 am
136
I often paste text from a WWW page into an email message. It is correctly formatted for paragraphs on the web page, but when pasted into email, I get carriage...
allanlewis@...
Aug 12, 2001 3:49 pm
137
Allan, I think the key to this is that 99% of the time, people end their paragraphs with *two* returns. Those are the ones you want to keep, but you can throw...
David Johnson
drjohnson@...
Aug 12, 2001 9:05 pm
138
Hi Allan, The trick is to replace double line feeds (\r\n\r\n) that mark the end of paragraphs with a special character to protect them (eg ##2##), THEN remove...
Simon Carter - Crysta...
launch@...
Aug 14, 2001 8:49 am
139
... In English, I am extracting all sections of text which: 1) begin with '<!--'. <!-- 2) may have a space after that,...