Can test parser support escaping all characters as \uxxxx ?

Hi,

Add-in Java File Parser support to escape all characters above 0x7f as \uxxxx.

Can Add-in Text Parser also support this function? It will save us tons of extra effort if we have many files. Then we don't need run native2ascii to convert generated target files. 

Slight smile

Parents
  • No, this is not supported because it is a typical Java function that is not needed or requested for normal text files. Why are you not using the Java parser? Possible solution approaches are:

    • Use the Java parser add-in
    • Automate calling native2ascii with a system macro that implements the AfterGenerateTarget event
    • Implement a user defined parser with the free SDK
Reply
  • No, this is not supported because it is a typical Java function that is not needed or requested for normal text files. Why are you not using the Java parser? Possible solution approaches are:

    • Use the Java parser add-in
    • Automate calling native2ascii with a system macro that implements the AfterGenerateTarget event
    • Implement a user defined parser with the free SDK
Children