horaceho/tradize

Convert a simplified Chinese string to a traditional Chinese array

v1.1.1 2021-04-27 08:54 UTC

This package is auto-updated.

Last update: 2024-04-27 15:15:23 UTC


README

Convert a simplified Chinese (简体) string to a traditional Chinese (繁體) array of string(s), or inverse.

Installation

composer require horaceho/tradize

Usage examples

简 → 繁

app('tradize')->convert('陈艳丽');

=> [
     "陳豔麗",
     "陳艷麗",
   ]

app('tradize')->convert('张小华');

=> [
     "張小華",
   ]

繁 → 简

app('tradize')->invert('陳艷麗');

=> [
     "陈艳丽",
   ]

Testing

composer test

Credit

BYVoid/OpenCC for data/dictionary/STCharacters.txt and data/dictionary/TSCharacters.txt.

License

The MIT License (MIT)