Search found 3 matches

by freewinger
Mon Sep 29, 2014 3:59 am
Forum: newLISP in the real world
Topic: IUP bindings
Replies: 1
Views: 2431

Re: IUP bindings

Maybe Some one . Look up share
by freewinger
Mon Sep 29, 2014 3:40 am
Forum: newLISP in the real world
Topic: write-file should add parameter to specified character
Replies: 4
Views: 3410

Re: write-file should add parameter to specified character

I think we need a "iconv" func Just like Linux kit. iconv -f UTF-8 -t GBK file1 -o file2 ;To manually specify a character encoding (setf str [text]白日依山尽 黄河入海流 欲穷千里目 更上一层楼[/text]) (write-file "result_utf8.txt" (first (parse str "\r\n"))) ;maybe ;(write-file "result_cp936.txt" (iconv "utf-8" "gbk" (fi...
by freewinger
Wed Sep 24, 2014 2:17 am
Forum: newLISP in the real world
Topic: write-file should add parameter to specified character
Replies: 4
Views: 3410

write-file should add parameter to specified character

NL use utf8 character set to save data by default. write-file and read-file function can't specifie character. In my work environment need to switch in the language in many character. I also found out that our lack of manual conversion character encoding functions, such as iconv . So This makes me v...