Search found 2222 matches

by DataMystic Support
Wed Sep 23, 2020 10:46 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Save Session / Load Session ?
Replies: 2
Views: 20251

Re: Save Session / Load Session ?

Hi David - this is on the backlog and is one of the next things we will tackle.
by DataMystic Support
Wed Sep 23, 2020 10:34 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Restrict filters - new idea
Replies: 1
Views: 16952

Re: Restrict filters - new idea

Hi David,

This would not work, because TextPipe's processing of the file is asynchronous. You cannot tell at any time, which elements of the file are passing through what filter at what time. This makes it ultra-fast, but also hard to reason about.
by DataMystic Support
Wed Sep 23, 2020 10:32 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Unicode tables and properties in PCRE ?
Replies: 1
Views: 16774

Re: Unicode tables and properties in PCRE ?

Yes, the latest regex library we use has substantial unicode support.

We've updated the help file for the next version to reflect the same content as the source library -
https://www.pcre.org/current/doc/html/pcre2pattern.html
by DataMystic Support
Wed Sep 23, 2020 10:25 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: How to make an Interlinear Bible or NT using TextPipe
Replies: 1
Views: 14859

Re: How to make an Interlinear Bible or NT using TextPipe

Hi David,

The merge filter can use a dummy filename - you can certainly add filters after the merge filter.
by DataMystic Support
Wed Sep 23, 2020 10:23 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Suggestions for a UI improvements
Replies: 2
Views: 16878

Re: Suggestions for a UI improvements

Thanks David - we'll add it to the backlog
by DataMystic Support
Wed Sep 23, 2020 10:18 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Truncate to width and Force to width ?
Replies: 1
Views: 14714

Re: Truncate to width and Force to width ?

Hi David,

We've clarified the Force to width help:

This filter truncates lines that are longer than the specified width, and pads lines that are smaller than the given width by adding spaces.
by DataMystic Support
Wed Sep 23, 2020 10:16 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Change key dialog has no Cancel button
Replies: 1
Views: 14973

Re: Change key dialog has no Cancel button

Hi David - thanks for the feedback. We've change the process so that it does not clear the previous key when you hit [Change Key]
by DataMystic Support
Wed Sep 23, 2020 10:05 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Suggested new filter Add line widths
Replies: 2
Views: 15411

Re: Suggested new filter Add line widths

Hi David - do you mean add the length of the line? If so, this is very easy to do as follows with a scripting filter: function processLine(line, EOL) processLine = line & " " & len(line) & EOL end function sub startJob() end sub sub endJob() end sub function startFile() a = 0 s...
by DataMystic Support
Wed Sep 23, 2020 9:42 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Suggestion: Add left/right margin using external file or internal table
Replies: 4
Views: 19436

Re: Suggestion: Add left/right margin using external file or internal table

Hi David,

This is highly specific - I would have though this was much easier to do with a scripting filter.
by DataMystic Support
Wed Sep 23, 2020 9:41 pm
Forum: TextPipe Tips and Tricks, Questions and Support
Topic: Word documents to text / RTF
Replies: 2
Views: 21026

Re: Word documents to text / RTF

Thanks David - we've clarified this in the help file - docx etc are already supported.

The 7zip format we'll add to our backlog.