home *** CD-ROM | disk | FTP | other *** search
/ ST-Computer Leser-CD 2000 January / LCD_01_2000.iso / anwend / luna146 / _english / scripts / ue_to_um.lus < prev    next >
Text File  |  1999-11-12  |  382b  |  20 lines

  1. ;
  2. ; Luna script file for conversion of the 'constructed'
  3. ; Umlauts (ue,oe..) into real Umlauts.
  4. ; (Popup entries assignable in block-filter dialog).
  5. ; The case (caps/l.c.) of the commands is immaterial.
  6. ;
  7.  
  8. lower<>upper            ; Pay attention to case
  9.  
  10. replace("ae","ä")
  11. replace("oe","ö")
  12. replace("ue","ü")
  13.  
  14. replace("Ae","Ä")
  15. replace("Oe","Ö")
  16. replace("Ue","Ü")
  17.  
  18. end()
  19.  
  20.