Hi All,
Need to create an UltraEdit script to convert characters within an open file.
1 Option is Unicode to Hexa like:
2 Option is Hexa to Unicode like:
List of characters to ignore during conversion:
ignore_chars = ["&", "&", "&", "<", "<", "<", ">", ">", ">", "'", "'", "'"]
Can anyone help me...
Need to create an UltraEdit script to convert characters within an open file.
1 Option is Unicode to Hexa 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
2 Option is Hexa to Unicode like:
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
List of characters to ignore during conversion:
ignore_chars = ["&", "&", "&", "<", "<", "<", ">", ">", ">", "'", "'", "'"]
Can anyone help me...