Search found 986 matches

by dfhtextpipe
Sat Mar 13, 2021 8:36 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Support case conversion for all Unicode bicameral scripts
Replies: 3
Views: 16955

Support case conversion for all Unicode bicameral scripts

Currently the Case conversion filters are only ANSI aware.

These filters are in need of a radical improvement to provide case conversion for all Unicode bicameral scripts.

A thorough overhaul is long overdue for this early feature of TextPipe.
by dfhtextpipe
Sun Mar 07, 2021 7:23 am
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Remove multiple whitespace logs 0 whitespaces removed when a tab is replaced by a space
Replies: 1
Views: 15511

Remove multiple whitespace logs 0 whitespaces removed when a tab is replaced by a space

The filter Remove multiple whitespace also converts tabs to spaces.

When this is all that occurs, the filter log is misleading when it has (eg):

Code: Select all

Info	2021-03-06 21:17:09	  0 multiple whitespaces removed
This gives the false impression that nothing has been changed!

David
by dfhtextpipe
Thu Mar 04, 2021 5:11 am
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: A corner case when converting bicameral text to Sentence case...
Replies: 1
Views: 16066

A corner case when converting bicameral text to Sentence case...

Hi Simon, I just observed a strange result after converting parts of a text file to sentence case . To illustrate it: 1st Corinthians, an introduction becomes 1St Corinthians, an introduction IMHO, the s in 1st ought not to be capitalised. Please review the definition of sentence case when a sentenc...
by dfhtextpipe
Wed Feb 17, 2021 6:50 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: TextPipe Windows Shell extensions have disappeared from my Explorer Context Menu
Replies: 5
Views: 18284

Re: TextPipe Windows Shell extensions have disappeared from my Explorer Context Menu

Hi Simon,

Still awaiting your response!

Is there any further useful information that I could provide?
e.g. From the Windows registry?
by dfhtextpipe
Thu Feb 11, 2021 8:00 am
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Adding a header to a single file output (join all input files together) ?
Replies: 2
Views: 14003

Adding a header to a single file output (join all input files together) ?

Hi Simon, Currently, there seems to be no straightforward means to add a suitable header to a single file output (join all input files together). We have two Add header filters: Add file header Add restriction header but neither of these does what's required on its own! The difficulty is accentuated...
by dfhtextpipe
Wed Feb 03, 2021 11:55 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: TextPipe Windows Shell extensions have disappeared from my Explorer Context Menu
Replies: 5
Views: 18284

TextPipe Windows Shell extensions have disappeared from my Explorer Context Menu

I don't know when I last used one, but I tried just now to apply a Context Menu option to a text file, only to discover that the whole TextPipe Windows Shell Extensions menu was no longer listed when I did a right click. Any suggestions as to what might have happened? The whole table is still availa...
by dfhtextpipe
Wed Jan 13, 2021 8:00 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Suggestion: Provide Unicode to Perl Escape Codes filter
Replies: 10
Views: 31263

Re: Suggestion: Provide Unicode to Perl Escape Codes filter

As I use PCRE Perl Escape codes in a lot of my replace lists for TextPipe, I think I know what I'm talking about. 8) Also, btw, most ASCII characters never need to be converted to Perl Escape Codes for use in replace lists. Those should also be excluded if you do implement the suggestion as an inter...
by dfhtextpipe
Wed Jan 13, 2021 2:05 am
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Suggestion: Provide Unicode to Perl Escape Codes filter
Replies: 10
Views: 31263

Re: Suggestion: Provide Unicode to Perl Escape Codes filter

Dear Simon, The outputs are not proper Perl Escape codes that would be recognised by a PCRE replace filter. For codepoints beyond \xFF the should be {braces} around each character code! e.g. ðñòóôõö÷øùúûüýþÿ ĀāĂ㥹ĆćĈĉĊċČčĎď 𐀀𐀁𐀂𐀃𐀄𐀅𐀆𐀇𐀈𐀉𐀊𐀋𐀌𐀍𐀎𐀏 should convert to \xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9...
by dfhtextpipe
Fri Jan 08, 2021 6:06 am
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Suggestion: Provide Unicode to Perl Escape Codes filter
Replies: 10
Views: 31263

Re: Suggestion: Provide Unicode to Perl Escape Codes filter

No - that makes no sense to me! Perl Escape Codes for Unicode characters have a variable number of bytes, depending upon how each character is represented in UTF-8 . Squishing everything to 2 bytes would not work for their use in external character replacement list files (such as tab delimited), as ...
by dfhtextpipe
Tue Jan 05, 2021 9:55 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Suggestion: Provide Unicode to Perl Escape Codes filter
Replies: 10
Views: 31263

Re: Suggestion: Provide Unicode to Perl Escape Codes filter

Hi Simon, For codepoints 00-FF (in the ANSI range), the leading 00 should be omitted, e.g. \x{00A0} becomes simply \x{A0} because these are single byte characters. Many UTF-8 byte codes are more than 2 bytes! e.g. タ is \xEF\xBE\x80 And beyond the BMP , each Unicode character requires 4 bytes. So yes...
by dfhtextpipe
Tue Jan 05, 2021 7:37 am
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Suggestion: Provide Unicode to Perl Escape Codes filter
Replies: 10
Views: 31263

Re: Suggestion: Provide Unicode to Perl Escape Codes filter

Hi Simon, A filter list would be somewhat unwieldy ! It would need to have 143859 entries - one for each named character in Unicode 13.0 . Given that the outputs are eminently calculable, it would be simpler (and surely much less effort) to design two suitable internal filters. And using formulae fo...