Giter VIP home page Giter VIP logo

convert-chinese-chars's Introduction

中文简体、繁体转换工具, 支持浏览器端和 Node 端.

中文簡體、繁體転換工具, 支持瀏覧器端和 Node 端.

如何使用

Node 环境

$ npm i --save convert-chinese-chars
const { toTraditional, toSimplified } = require('convert-chinese-chars');

// 简体中文 => 繁体中文
console.log(toTraditional('中华人民共和国')); // 输出: 中華人民共和國

// 繁体中文 => 简体中文
console.log(toSimplified('中華人民共和國')); // 输出: 中华人民共和国

浏览器环境

注: 因为内置词库的原因, 体积比较大, 大概 85kb.

使用 script 标签加载 build/convert-chinese-chars.min.js 后, 调用 window.ConvertChineseChars 即可, 示例代码如下:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Demo</title>
    <script src="./build/convert-chinese-chars.min.js"></script>
  </head>
  <body>
    <script>
      const Converter = window.ConvertChineseChars;

      // 简体中文 => 繁体中文
      console.log(Converter.toTraditional('中华人民共和国')); // 输出: 中華人民共和國

      // 繁体中文 => 简体中文
      console.log(Converter.toSimplified('中華人民共和國')); // 输出: 中华人民共和国
    </script>
  </body>
</html>

声明

词库来自 funNLP

License

MIT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.