Highlight extended ASCII characters

Highlight extended ASCII characters

2
NewbieNewbie
2

    Dec 10, 2005#1

    Hello,

    I'm not sure if this should be Syntax Highlighting or a macro. I'm trying to highlight any non-standard ASCII characters (i.e. anything other than !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~). So accented characters, etc., would be highlighted. Is this possible?

    Thanks!

    6,683583
    Grand MasterGrand Master
    6,683583

      Dec 12, 2005#2

      Code: Select all

      /L20"Non ASCII" Noquote File Extensions = *
      /Delimiters =  äöüÄÖÜßÇÈÉÊË
      /C1"Non ASCII"
      Ä
      Ç
      È
      É
      Ê
      Ë
      Ö
      Ü
      ß
      ä
      ö
      ü
      This is an example how it could be realized. You have to put all non ASCII characters to the list of delimiters and also sorted to the language color. Use the ASCII Table from menu View to add all non ASCII charaters to the 2 lists.

      Note: 2 byte characters can't be highlighted with this method.

      And don't ask me about different code pages. I don't know.
      Best regards from an UC/UE/UES for Windows user from Austria

      2
      NewbieNewbie
      2

        Dec 14, 2005#3

        Thanks!