Skip to content

Chinese-Character Jian<=>Fan converting library in Go

License

Notifications You must be signed in to change notification settings

go-cc/cc-jianfan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cc-jianfan

MIT License GoDoc Go Report Card travis Status

TOC

中文简繁互转
Chinese-Character Jian<=>Fan converter

API

> jianfan_test.go

package ccst_test

import (
	"fmt"

	ccst "github.com/go-cc/cc-jianfan"
)

// for standalone test, change package to main and the next func def to,
// func main() {
func Example_output() {
	sj := "看书学习。\n名著:《红楼梦》〖清〗曹雪芹 著、高鹗 续/『人民文学』出版社/1996—9月30日/59.70【元】,《三国演义》〖明〗罗贯中。"

	sf := ccst.S2T(sj)
	fmt.Println(sf)
	// Output:
	//   not here!
	fmt.Println(ccst.T2S(sf))
	sj = ccst.T2S("增補臺灣標準IT詞彙。")
	fmt.Println(sj)
	fmt.Println(ccst.S2T(sj))

	// Output:
	// 看書學習。
	// 名著:《紅樓夢》〖清〗曹雪芹 著、高鶚 續/『人民文學』齣版社/1996—9月30日/59.70【元】,《三國演義》〖明〗羅貫中。
	// 看书学习。
	// 名著:《红楼梦》〖清〗曹雪芹 著、高鹗 续/『人民文学』出版社/1996—9月30日/59.70【元】,《三国演义》〖明〗罗贯中。
	// 增补台湾标准IT词汇。
	// 增補臺灣標準IT詞匯。
}

All patches welcome.

Credits