Search found 1295 matches

by MudGuard
Tue May 08, 2018 6:05 pm
Forum: General
Topic: Visible Characters, Except for Comma and Quote
Replies: 2
Views: 1833

for the hex characters, the \ is missing - it should be \x20-\x21 and so on
by MudGuard
Fri Apr 20, 2018 5:39 pm
Forum: General
Topic: replace all chars between '(' and ')' including '(' and ')'?
Replies: 6
Views: 2523

I'd use

Code: Select all

\(.*?\)
in the find, and replace with nothing.
It changes a(b)c(d)e(f)g to aceg, while ben_josephs version would result in ag
by MudGuard
Sat Mar 24, 2018 7:40 pm
Forum: General
Topic: Remove from context menu
Replies: 2
Views: 1098

Configure -> Preferences, General,
Remove Check from Checkbox "Context Menu" under "Put shortcuts to Textpad on".
by MudGuard
Wed Mar 14, 2018 7:02 am
Forum: General
Topic: Find is not working - Replace is OK
Replies: 10
Views: 1627

The find dialog might be outside the visible screen. Try this: Use Search -> Find Press Alt+Space - a window menu should appear. Choose "Move" press one of the cursor (arrow) keys. The Find dialog should appear at the mouse pointer. Move the mouse to place the dialog where you want to have...
by MudGuard
Mon Dec 11, 2017 6:58 pm
Forum: General
Topic: [7.6.2] Am I imagining a Block-Select Textpad feature?
Replies: 4
Views: 1504

As searchng usually changes selection, does it make sense to search in selection? "Selected Text" exists as option in the replace dialog. Can't remember it ever was different. To search in columns higher than x: ^.{x,}yoursearchterm To find yoursearchterm starting in columns x to y: ^.{x,y...
by MudGuard
Thu Nov 09, 2017 12:39 pm
Forum: General
Topic: Save file with first line as file name
Replies: 4
Views: 1449

I did understand the question completely different. I thought Damien wanted to create a new document, type in some lines of text, and then save it, using the content of the first line as filename. e.g. when the text of the new file is this is some text which is in the file then saving the file would...
by MudGuard
Sat Oct 28, 2017 5:13 am
Forum: General
Topic: Help convert single column address list into | pipe delimite
Replies: 3
Views: 2163

Step 1: replace

Code: Select all

([^*])\r?\n([^*])
by

Code: Select all

$1|$2

Step 2: replace

Code: Select all

^|
by nothing
Step 3: replace

Code: Select all

\*+\n
by nothing
by MudGuard
Fri Jul 21, 2017 2:57 pm
Forum: General
Topic: Toolbar Icon Size
Replies: 2
Views: 703

The only thing related to this might be:

Right-Click on any toolbar
Customize ...
Options

Under "Other" there is a checkbox "Large icons".
by MudGuard
Fri Jun 09, 2017 1:39 pm
Forum: Enhancement Suggestions
Topic: Search warnings into Tool Output instead of Search Results
Replies: 1
Views: 1852

Search warnings into Tool Output instead of Search Results

in some Find in Files searches, I get tons of warnings (Could not open file, Line too long, ...) and a handful of search hits. It is then very hard to find the hits ... I suggest an option (so users who want the current behaviour can keep it) for routing the warnings during find in files into the To...
by MudGuard
Thu Jun 08, 2017 7:42 am
Forum: General
Topic: [Solved] Unavailable font size
Replies: 2
Views: 497

Configure -> Preferences -> Document Classes -> <your document class> -> Font

Select Courier New from the left list, select Standard from the middle list, and type 13 into the edit box on top of the right list.


(ok, it doesn't add the 13 to the list, but 13 is used anyway)
by MudGuard
Wed May 17, 2017 8:09 pm
Forum: General
Topic: Adding line numbers to vintage BASIC code
Replies: 2
Views: 537

replace ^ with \i{10,20,5,0}
probably it is a good idea to add a space after the } to have something between line number and rest of line.

First value in {} is start value, second is increment, third is width, fourth is fill character
by MudGuard
Fri May 12, 2017 5:55 pm
Forum: Enhancement Suggestions
Topic: "Match whole words" does not accept underscores in
Replies: 3
Views: 2562

use

Code: Select all

\b[a-zA-Z0-9_]+\b
as regex to find whole words including underscores
by MudGuard
Thu Apr 13, 2017 11:36 am
Forum: General
Topic: Binary mode not displaying all characters
Replies: 2
Views: 532

The problem starts earlier. There are three bytes 22, but only two " ...
by MudGuard
Thu Apr 13, 2017 7:54 am
Forum: General
Topic: Find an unbroken string of anything . . .
Replies: 2
Views: 2040

Find (checking Regular exception):

Code: Select all

[^ \t]{5000,}
(there is a space between ^ and \)

Then cut (Ctrl-X), new file (Ctrl-N), Paste (Ctrl-V), Save (Ctrl-S).
by MudGuard
Mon Mar 27, 2017 11:30 am
Forum: General
Topic: Useful information line disappears
Replies: 12
Views: 1545

AmigoJack wrote:However, the "characters" amount differs
for some reason unknown to me, line feed and carriage return are not in the character count.