Search found 323 matches

by jeffy
Mon Dec 02, 2013 6:32 pm
Forum: General
Topic: Remove text enclosed by < and > as well as the < an
Replies: 2
Views: 402

If I'm understanding you, this regular expression would work:

Code: Select all

<ReportTable([0-9]{1,2})>\[EmbeddedReport\1\]efrm goes here\[/EmbeddedReport\1\]
This assumes the number is the same in all locations throughout the line.
by jeffy
Mon Dec 02, 2013 6:27 pm
Forum: General
Topic: User defind Toolbars
Replies: 1
Views: 363

Interesting idea, but not possible.

*I* wish most-recently-opened files and the search-terms and parameters in the find/search/find-in-files dialogs were also saved into the workspace.
by jeffy
Mon Dec 02, 2013 5:56 pm
Forum: General
Topic: Regex bug: Starts w/ '^' but finding stuff NOT at start
Replies: 2
Views: 400

Regex bug: Starts w/ '^' but finding stuff NOT at start

I have this NON-WORKING Java code. __TAB__public GLTRawIsListOfE(boolean b_elementsCopyable, String s_rgcName) { /** <P>Create a new <CODE>GLTLOCharSequenceRoot</CODE>.</P> YYY It's a constructor's signature line (nothing after the opening curly), and the top of the next function's JavaDoc (document...
by jeffy
Wed Oct 30, 2013 3:50 pm
Forum: General
Topic: Bug when copying and then immediately pasting a relative url
Replies: 7
Views: 647

I've encountered this bug again, with different text, again only with word-wrap on, and only in a JavaDoc block in a *.java file. Try this. I've eliminated everything but the problem line. http://jeffyepstein.com/posts/textpad/NullEmptyCntrLmntUtil.java Select the parameters (open through close pare...
by jeffy
Wed Oct 30, 2013 3:44 pm
Forum: General
Topic: Is it possible to use Clip Library for find/replace?
Replies: 2
Views: 607

Unfortunately, no.
by jeffy
Wed Oct 16, 2013 12:47 pm
Forum: Enhancement Suggestions
Topic: More Regular Expression examples in the Help needed
Replies: 5
Views: 1810

*THE* book on regular expressions.
by jeffy
Mon Oct 07, 2013 2:51 pm
Forum: General
Topic: Regex bug with lookahead AND lookbehind
Replies: 5
Views: 641

Another example of this problem I just encountered: (?<=[ \t])\bIIMeta\b\s*\(\s*\b(\w+)(|(?:<[?\w ]+>)|(?:<[^<]*<[?\w ]+>[^>]*>)|(?:<[^<]*<[^<]*<[?\w ]+>[^>]*>[^>]*>))\s+(\w+)\b(?!>)\s*\) This finds a Java function signature with exactly 1 parameter (including up to three levels of generics after th...
by jeffy
Thu Sep 19, 2013 5:01 pm
Forum: General
Topic: Announcing XBN-PhraseExpress
Replies: 1
Views: 310

by jeffy
Wed Sep 18, 2013 8:41 pm
Forum: General
Topic: Announcing XBN-PhraseExpress
Replies: 1
Views: 310

Announcing XBN-PhraseExpress

XBN-PhraseExpress is a large set of generically-useful Microsoft Windows scripting tools, written in PhraseExpress, using the plain-text editor TextPad as its foundation. Specifically, XBNPE gives your scripts direct access to each of TextPad's 332 built-in commands (FileOpen, SearchReplace, etc.). ...
by jeffy
Fri Sep 13, 2013 6:04 pm
Forum: General
Topic: REGEX works okay, but macro using it does nothing
Replies: 3
Views: 467

Actually this problem went away when I installed 7.0.9.
by jeffy
Sat Aug 31, 2013 9:15 pm
Forum: General
Topic: Bug when copying and then immediately pasting a relative url
Replies: 7
Views: 647

Glad I recorded it!

So: Is this post enough, or should I directly report this?
by jeffy
Sat Aug 31, 2013 2:36 pm
Forum: General
Topic: Bug when copying and then immediately pasting a relative url
Replies: 7
Views: 647

I restarted, un-installed and then re-installed 7.0.9, and it's still happening. Windows 7. Take a look:

http://youtu.be/yMIvu6k50lQ

:(
by jeffy
Thu Aug 29, 2013 5:37 pm
Forum: General
Topic: Bug when copying and then immediately pasting a relative url
Replies: 7
Views: 647

Bug when copying and then immediately pasting a relative url

I've encountered a mysterious bug related to copy-paste. Please consider trying this, to confirm it happens for you, too. Download the HTML-source for this webpage (view the page, then right-click to view the source): http://jeffyepstein.com/posts/textpad/index.html Save the file on your desktop as ...
by jeffy
Fri Aug 23, 2013 5:05 pm
Forum: General
Topic: Regex bug with lookahead AND lookbehind
Replies: 5
Views: 641

I'm glad I'm not the only one. Thanks.

I wonder why it's a non-trivial change, although I expect the explanation is non-trivial :)
by jeffy
Thu Aug 22, 2013 2:38 am
Forum: General
Topic: Regex bug with lookahead AND lookbehind
Replies: 5
Views: 641

Regex bug with lookahead AND lookbehind

I'm pretty sure I found a regex related bug here. Could someone please confirm? I'm using 7.0.9. text text text Put the cursor somewhere in the middle word and search for '$' down (regex, without the quotes). The cursor goes to the end of the line. Then search for '(?<=\S)\t(?=\S)' down. It wraps ar...