home *** CD-ROM | disk | FTP | other *** search
/ Online Praxis 1998 March / Image.iso / CD-ROM / TOOLS / DFU / BLAZE.EXE / data1.cab / Verity / vcm / Style / style.lex < prev    next >
Encoding:
Text File  |  1998-03-12  |  446 b   |  18 lines

  1. # style.lex -- Approximation of internal default style.lex
  2. $control: 1 
  3. lex:
  4. {
  5.     define: ALNUM "[A-Za-z0-9&/]" # Valid word characters
  6.     define: W "[ \t\f\r\v]"     # Valid whitespace characters
  7.  
  8.     token: WORD "{ALNUM}+(\\.{ALNUM}+)*"
  9.     token: EOS "[.?!][.?! \t]*"
  10.     token: EOP "{W}*\n({W}*\n)+"
  11.  
  12.     token: NEWLINE "{W}*\n"
  13.     token: TAB "\t"
  14.     token: WHITE "{W}+"
  15.     token: PUNCT "[^A-Za-z0-9 \t\f\r\v.?!]+"
  16.  
  17. }
  18. $$