![]() |
|
||||
![]() ![]() ![]() ![]() ![]() ![]() ![]() |
|||||
|
|
||||||
| Other Library Functions | ||||||
| function |
euc.reader |
|
Library: Character encodings, EUC (OMFFEUC)
Import: omffeuc.xmd |
export external source function reader
from value source input-data
Use EUC_reader to reads value source, its argument, and return the text of that file converted from a EUC encoding to a UTF-8 encoding. That is, the provided source is in EUC, but the program sees UTF-8.
To use omffeuc, you must import it into your program using a statement like this:
import "omffeuc.xmd" prefixed by euc.
(Please see the import topic for more on importing.)
; Submit the EUC-encoded file named by the first command-line
; argument to the program's find rules, converting from EUC
; to UTF-8 prior to the find rules seeing the data:
import "omffeuc.xmd" prefixed by euc.
process
submit euc. reader from file #args [1]
|
Other Library Functions euc.reader euc.writer |