Search found 7 matches

by gdutoit
Sun Apr 08, 2012 10:20 am
Forum: General
Topic: Macro: search for current content of pasteboard
Replies: 2
Views: 357

I saw that post too, and couldn't make much sense of it either, but I don't think it quite addresses the same thing.

I've since found a sort of workaround using an external macro utility (Key Text) which lets you compile a macro as a series of keystrokes, e.g.: {Ctrl c}{F5}{Ctrl v}. But for some ...
by gdutoit
Sat Apr 07, 2012 9:37 pm
Forum: General
Topic: Macro: search for current content of pasteboard
Replies: 2
Views: 357

Macro: search for current content of pasteboard

I want to record a macro to embed (thousands of) footnotes.

In the documents the the footnote number markers are at the correct locations in the text, and the correspondingly numbered text of the footnotes are at the end of the file.

So I want to record a macro that searches for a footnote marker ...
by gdutoit
Thu May 10, 2007 1:05 pm
Forum: General
Topic: Exclude string, not just chars, from search
Replies: 10
Views: 1325

Well I gave WildEdit a try, and it's all there in the Help!

Suppose I should've gone there first, and saved you some trouble. (But, in mitigation, I didn't expect WildEdit's functionality to be different from TextPad.)
by gdutoit
Thu May 10, 2007 12:47 pm
Forum: General
Topic: Exclude string, not just chars, from search
Replies: 10
Views: 1325

Thanks again.

I haven't used WildEdit (it seemed to me that a utility like BK ReplacEm, which is free and can do long lists of replacements on multiple files, makes more sense.

But it seems I should give WildEdit a try. Will download the trial version immediately!
by gdutoit
Thu May 10, 2007 7:17 am
Forum: General
Topic: Exclude string, not just chars, from search
Replies: 10
Views: 1325

Thanks man, that will certainly save some frustration.

(I'm surprised, though, that an option for non-greedy search or something along the lines of [^"string"]*, where everything between quotes is excluded, isn't standard fare in REs.)
by gdutoit
Tue May 08, 2007 7:45 pm
Forum: General
Topic: Exclude string, not just chars, from search
Replies: 10
Views: 1325

However, if the line contains two instances of text between <startcode> and <endcode>, e.g.:

<startcode> text <endcode> blah blah <startcode > more text <endcode>

this greedy search will find the entire line instead of the individual coded portions. That's why I'm looking for a "not <endcode ...
by gdutoit
Tue May 08, 2007 4:36 pm
Forum: General
Topic: Exclude string, not just chars, from search
Replies: 10
Views: 1325

Exclude string, not just chars, from search

I want to find everything between a start and end code, e.g.:
<startcode> - whole lot of text including angle brackets etc - <endcode>

Of course if I search for: <startcode>[^<endcode>]*<endcode>
it's going to stop at any of the characters between [ and ]

How do I make it exclude only the entire ...