Hi all,
I need to create an UltraEdit script to convert characters within an open file.
1. Option is Unicode to hexadecimal entity like:
2. Option is hexadecimal entity to Unicode like:
List of characters to ignore during conversion:
Can anyone help me?
I need to create an UltraEdit script to convert characters within an open file.
1. Option is Unicode to hexadecimal entity like:
Code: Select all
Unicode "α" to "α" Hexa
Unicode "β" to "β" Hexa
Unicode "γ" to "γ" Hexa
Unicode "δ" to "δ" Hexa
Unicode "ε" to "ε" Hexa
Unicode "ζ" to "ζ" Hexa
Unicode "À" to "À" Hexa
Unicode "Á" to "Á" Hexa
Code: Select all
Hexa "α" to "α" Unicode
Hexa "β" to "β" Unicode
Hexa "γ" to "γ" Unicode
Hexa "δ" to "δ" Unicode
Hexa "ε" to "ε" Unicode
Hexa "ζ" to "ζ" Unicode
Hexa "À" to "À" Unicode
Hexa "Á" to "Á" Unicode
Code: Select all
ignore_chars = ["&", "&", "&", "<", "<", "<", ">", ">", ">", "'", "'", "'"]