=?windows-1250?Q?Re:_PSPad_5.x:_How_to_do_about_12_search_and_replaces_on_the_open_tab?_[706= 60]?=

2018-09-09 Tema obsahu Jan Fiala
Don't use byte replace, but use string replace -- PSPad freeware editor https://www.pspad.com

=?windows-1250?Q?Re:_PSPad_5.x:_How_to_do_about_12_search_and_replaces_on_the_open_tab?_[706= 59]?=

2018-09-09 Tema obsahu therium

=?windows-1250?Q?Re:_PSPad_5.x:_How_to_do_about_12_search_and_replaces_on_the_open_tab?_[706= 58]?=

2018-09-09 Tema obsahu therium
Ok, I found the user convertors. I'm trying to remove a 2 byte character which is a diamond. The decimal value is 9830, hex value x2666. I put 9830 under the [Remove chars] section of my own Convertors

Re: Split a txt file with pspad [70657]

2018-09-09 Tema obsahu Angel Torres
Please put the link here for everybody. I will try if you does. I will learn to run a perl program. Best Regards -- Nice program indeed PSPad freeware editor https://www.pspad.com

=?windows-1250?Q?Re:_PSPad_5.x:_How_to_do_about_12_search_and_replaces_on_the_open_tab?_[706= 56]?=

2018-09-09 Tema obsahu Jan Fiala
Hello Look at user convertors. In the PSPad 5 you can use regular expression in user convertors as well. User convertor definition is list of search/replace strings what are applied to open tab -- PSPad freeware editor https://www.pspad.com

Re: Split a txt file with pspad [70655]

2018-09-09 Tema obsahu therium
I had to write a Perl program for this where a new file was generated each time the original file had a '*' on a line by itself. Some of my text files are 70,000 lines or more. -- PSPad freeware editor https://www.pspad.com

Re: Replace any characters with 3 characters. [70654]

2018-09-09 Tema obsahu therium
In Perl syntax where $s is a variable holding a string: $s=~s/={4,}/===/; # Replace 4 or more equals with just 3 equals. I do this a lot to remove duplicate, consecutive spaces to one space: $s=~s/ {2,}/ /g; # Replace 2 or more spaces with just one space. --

=?windows-1250?Q?PSPad_5.x:_How_to_do_about_12_search_and_replaces_on_the_open_tab?_[70653]?=

2018-09-09 Tema obsahu therium
- PSPad 5.0.0 - Windows 8 (my home PC) I convert historical documents from PDF to text, and then to Markdown, then to EPUB. In order to make the files neat I want to do about a dozen search and replaces on every file, namely, the open tab. I want to write a script to do this in PSPad in VBScript.