Platforms to show: All Mac Windows Linux Cross-Platform
ConvertUnicodeToCharacterDecompositionMBS(text as string) as string
Function:
Converts unicode characters to decomposed normalization form.
Example:
Notes:
This function replaces character represented by one unicode character by the decomposed variant.
see also
https://en.wikipedia.org/wiki/Unicode_equivalence
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
global method | String | MBS Util Plugin | 15.2 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Example:
dim s1 as string = ConvertUnicodeToCharacterDecompositionMBS("ä")
MsgBox s1+": "+EncodeHex(s1)
// shows ä: 61CC88
dim s2 as string = ConvertUnicodeToCharacterCompositionMBS("ä")
MsgBox s2+": "+EncodeHex(s2)
// shows ä: C3A4
This function replaces character represented by one unicode character by the decomposed variant.
see also
https://en.wikipedia.org/wiki/Unicode_equivalence
Blog Entries
The items on this page are in the following plugins: MBS Util Plugin.
