Suggestion: Provide filter Remove all diacritics

Get help with installation and running here.

Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators

dfhtextpipe
Posts: 986
Joined: Sun Dec 09, 2007 2:49 am
Location: UK

Suggestion: Provide filter Remove all diacritics

Post by dfhtextpipe »

A very useful enhancement to TextPipe would be a filter called Remove all diacritics.

Assume that the input would be UTF-8.

How about this?

David
David
dfhtextpipe
Posts: 986
Joined: Sun Dec 09, 2007 2:49 am
Location: UK

Re: Suggestion: Provide filter Remove all diacritics

Post by dfhtextpipe »

Hi Simon,

Have you thought of a response on this yet?

Best regards,

David
David
User avatar
DataMystic Support
Site Admin
Posts: 2227
Joined: Mon Jun 30, 2003 12:32 pm
Location: Melbourne, Australia
Contact:

Re: Suggestion: Provide filter Remove all diacritics

Post by DataMystic Support »

Hi David,

If you're happy to provide the PCRE pattern to do so, we're happy to bundle this with TextPipe.

Regards,

Simon
dfhtextpipe
Posts: 986
Joined: Sun Dec 09, 2007 2:49 am
Location: UK

Re: Suggestion: Provide filter Remove all diacritics

Post by dfhtextpipe »

It's not that simple, as it depends on Unicode character properties, rather than something you can achieve readily with PCRE.

Clearly the first step would be to Normalise to NFD so that the diacritics become separate characters,
but there's no simple formula to match "these codepoints are diacritics" other than a complex table extracted laboriously from Unicode data.

What's needed is to be able to go deeper.

David
David
User avatar
DataMystic Support
Site Admin
Posts: 2227
Joined: Mon Jun 30, 2003 12:32 pm
Location: Melbourne, Australia
Contact:

Re: Suggestion: Provide filter Remove all diacritics

Post by DataMystic Support »

What about this: https://en.wikipedia.org/wiki/Perl_Compatible_Regular_Expressions

Unicode character properties

Unicode defines several properties for each character. Patterns in PCRE can match these properties. e.g. \p{Ps}.*?\p{Pe} would match a string beginning with any "opening punctuation" and ending with any "close punctuation" such as "[abc]". Since version 8.10, matching of certain "normal" metacharacters can be driven by Unicode properties when the compile option PCRE_UCP is set. The option can be set for a pattern by including (*UCP) at the start of pattern. The option alters behavior of the following metacharacters: \B, \b, \D, \d, \S, \s, \W, \w, and some of the POSIX character classes. For example, the set of characters matched by \w (word characters) is expanded to include letters and accented letters as defined by Unicode properties. Such matching is slower than the normal (ASCII-only) non-UCP alternative. Note that the UCP option requires the PCRE library to have been built to include UTF-8 and Unicode property support. Support for UTF-16 is included in version 8.30 while support for UTF-32 was added in version 8.32.
dfhtextpipe
Posts: 986
Joined: Sun Dec 09, 2007 2:49 am
Location: UK

Re: Suggestion: Provide filter Remove all diacritics

Post by dfhtextpipe »

Hi Simon,

I've just read the Wikipedia article but I'm none the wiser as to how this would get us nearer to a pattern that simply matches all diacritics.

I wonder how Andrew West implemented BabelPad | Convert | Other | Strip Diacritics ?

David
David
User avatar
DataMystic Support
Site Admin
Posts: 2227
Joined: Mon Jun 30, 2003 12:32 pm
Location: Melbourne, Australia
Contact:

Re: Suggestion: Provide filter Remove all diacritics

Post by DataMystic Support »

Could we just use this list?: https://www.compart.com/en/unicode/combining/230
dfhtextpipe
Posts: 986
Joined: Sun Dec 09, 2007 2:49 am
Location: UK

Re: Suggestion: Provide filter Remove all diacritics

Post by dfhtextpipe »

Interesting site.

It needs to be very carefully thought out with much attention to detail.

- Not just combining class above but all the various combining classes listed in https://www.compart.com/en/unicode/combining
- And we'd need to consider some of the modifier letters & modifier symbols that also behave as diacritics.

And it it should conform to the character properties in Unicode 11.0 or later, not those of ten years ago.

If the proposed new filter always gives the same results the equivalent convert option in BabelBad, then I'd be very happy.
It's always nice to have something that can be scripted.

Regards,

David
David
User avatar
DataMystic Support
Site Admin
Posts: 2227
Joined: Mon Jun 30, 2003 12:32 pm
Location: Melbourne, Australia
Contact:

Re: Suggestion: Provide filter Remove all diacritics

Post by DataMystic Support »

I think this is covered by properties available in the unicode definition:

ccDiacritic, // Characters that linguistically modify the meaning of another character to which they apply. Some diacritics are not combining characters, and some combining characters are not diacritics.
dfhtextpipe
Posts: 986
Joined: Sun Dec 09, 2007 2:49 am
Location: UK

Re: Suggestion: Provide filter Remove all diacritics

Post by dfhtextpipe »

Are those Unicode properties accessible to TextPipe ?

David
David
User avatar
DataMystic Support
Site Admin
Posts: 2227
Joined: Mon Jun 30, 2003 12:32 pm
Location: Melbourne, Australia
Contact:

Re: Suggestion: Provide filter Remove all diacritics

Post by DataMystic Support »

They are definitely available -subject to the Unicode library being up-to-date. We could code this now but against the older Unicode library.
dfhtextpipe
Posts: 986
Joined: Sun Dec 09, 2007 2:49 am
Location: UK

Re: Suggestion: Provide filter Remove all diacritics

Post by dfhtextpipe »

Please do - if it's not too difficult.

It could then be updated to work with Unicode 12.1 when you have the relevant libraries in place.

Best regards,

David
David
dfhtextpipe
Posts: 986
Joined: Sun Dec 09, 2007 2:49 am
Location: UK

Re: Suggestion: Provide filter Remove all diacritics

Post by dfhtextpipe »

Is the suggested feature now more feasible with Unicode 12.1 being built into TextPipe v11.x ?

Best regards,

David
David
User avatar
DataMystic Support
Site Admin
Posts: 2227
Joined: Mon Jun 30, 2003 12:32 pm
Location: Melbourne, Australia
Contact:

Re: Suggestion: Provide filter Remove all diacritics

Post by DataMystic Support »

Hi David - yes - we'll look into this for next release
dfhtextpipe
Posts: 986
Joined: Sun Dec 09, 2007 2:49 am
Location: UK

Re: Suggestion: Provide filter Remove all diacritics

Post by dfhtextpipe »

Will the Remove diacritics filter[s] handle UTF-8 or is it limited to UTF-16 LE only ?

Several Unicode filters can only handle UTF-16 LE encoding.

Would it be feasible for each of these filters to detect when any other encoding is piped into it and simply stop with an error message?

This would avoid the crazy situation where the filter progress indicator is actually displaying regress (estimated time to completion ever increasing).

David
David
Post Reply