# UyghurCharUtils **Repository Path**: nur/UyghurCharUtils ## Basic Information - **Project Name**: UyghurCharUtils - **Description**: 维吾尔语(Uyghur/Uighur)哈萨克语,柯尔克孜语基本区和扩展区转换函数类库 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 39 - **Created**: 2022-11-03 - **Last Updated**: 2022-11-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # UyghurCharUtils ### 项目介绍 ##### 维吾尔语,哈萨克语,柯尔克孜语基本区和扩展区转换函数类库 ##### v1版本地址:https://gitee.com/kerindax/UyghurCharUtils/tree/v1.x/ ##### v1版本支持语言:javascript,php,csharp,vb.net,mysql,java,golang ##### v2版本项目地址:https://gitee.com/kerindax/UyghurCharUtils/tree/v2/ ##### v2版本支持语言:javascript,php,csharp,vb.net,java ##### v3版本项目地址:https://gitee.com/kerindax/UyghurCharUtils ##### v3版本支持语言:javascript,php,csharp,vb.net,java,golang,swift ### 贡献者 Kerindax,Sherer,Bulut,UyCode, Erbash ### 联系 1482152356@qq.com ### 使用说明 1. Basic2Extend(source){} 基本区 转换 扩展区 2. Extend2Basic(source){} 扩展区 转换 基本区 3. Basic2RExtend(source){} 基本区 转换 反向扩展区 4. RExtend2Basic(source){} 反向扩展区 转换 基本区 5. BasicSyllable(source){} 音节索引 ##### 克隆仓库 `git clone git@gitee.com:kerindax/UyghurCharUtils.git` ##### 安装依赖 ```html 已取消更新 ``` ##### CDN 引入 ```html 已取消更新 ``` ### 例子 - nodejs ```js const UyghurCharUtils = require("./UyghurCharUtils.js"); var utils = new UyghurCharUtils(); var source = "سالام JS"; var target1 = utils.Basic2Extend(source); //基本区 转换 扩展区 var target2 = utils.Extend2Basic(target1); //扩展区 转换 基本区 var target3 = utils.Basic2RExtend(source); //基本区 转换 反向扩展区 var target4 = utils.RExtend2Basic(target3); //反向扩展区 转换 基本区 var target5 = utils.BasicSyllable(source);// 音节索引 console.log(target1); console.log(target2); console.log(target3); console.log(target4); console.log(target5); ``` - browser ```html UyghurCharUtils ``` - php ```php header("Content-type: text/html; charset=utf-8"); require_once "UyghurCharUtils.php"; $utils = new UyghurCharUtils(); $source = "سالام PHP"; $target1 = $utils->Basic2Extend($source);//基本区 转换 扩展区 $target2 = $utils->Extend2Basic($target1);//扩展区 转换 基本区 $target3 = $utils->Basic2RExtend($source);//基本区 转换 反向扩展区 $target4 = $utils->RExtend2Basic($target3);//反向扩展区 转换 基本区 $target5 = $utils->BasicSyllable($source);//音节索引 echo $target1."
"; echo $target2."
"; echo $target3."
"; echo $target4."
"; echo $target5."
"; ``` - c# ```c# static void Main(string[] args) { UyghurCharUtils utils = new UyghurCharUtils(); string source = "سالام C#"; string target1 = utils.Basic2Extend(source);//基本区 转换 扩展区 string target2 = utils.Extend2Basic(target1);//扩展区 转换 基本区 string target3 = utils.Basic2RExtend(source);//基本区 转换 反向扩展区 string target4 = utils.RExtend2Basic(target3);//反向扩展区 转换 基本区 string target5 = utils.BasicSyllable(source);//音节索引 MessageBox.Show(target1 + "\n" + target2 + "\n" + target3 + "\n" + target4 + "\n" + target5); } ``` - vb.net ```vb Sub Main() Dim utils As New UyghurCharUtils Dim source As String = "سالام VB.NET" Dim target1 As String = utils.Basic2Extend(source) '基本区 转换 扩展区 Dim target2 As String = utils.Extend2Basic(target1) '扩展区 转换 基本区 Dim target3 As String = utils.Basic2RExtend(source) '基本区 转换 反向扩展区 Dim target4 As String = utils.RExtend2Basic(target3) '反向扩展区 转换 基本区 Dim target5 As String = utils.BasicSyllable(source) '音节索引 MsgBox(target1 + vbCrLf + target2 + vbCrLf + target3 + vbCrLf + target4 + vbCrLf + target5) End Sub ``` - java ```java public class demo { public static void main(String[] args) { UyghurCharUtils utils = new UyghurCharUtils(); String source = "سالام Java"; String target1 = utils.Basic2Extend(source);//基本区 转换 扩展区 String target2 = utils.Extend2Basic(target1);//基本区 转换 扩展区 String target3 = utils.Basic2RExtend(source);//基本区 转换 扩展区 String target4 = utils.RExtend2Basic(target3);//基本区 转换 扩展区 String target5 = utils.RExtend2Basic(target3);//音节索引 System.out.println(target1 + "\n" + target2 + "\n" + target3 + "\n" + target4 + "\n" + target5); } } ``` - golang ```golang package main import ( "fmt" "./UyghurCharUtils" ) func main() { utils := UyghurCharUtils() source := "سالام go" utils.Basic2Extend(source) //基本区 转换 扩展区 target1 := utils.Basic2Extend(source) //基本区 转换 扩展区 target2 := utils.Extend2Basic(target1) //扩展区 转换 基本区 target3 := utils.Basic2RExtend(source) //基本区 转换 反向扩展区 target4 := utils.RExtend2Basic(target3) //反向扩展区 转换 基本区 target5 := utils.BasicSyllable(source) //音节索引 fmt.Printf("\n%s\n%s\n%s\n%s\n%s\n",target1,target2,target3,target4,target5) } ``` - swift ```swift import UIKit class DemoController: UIViewController { override func viewDidLoad() { super.viewDidLoad() // MARK: - 如何使用 UyghurCharUtils ? /** 1. 导入 UyghurCharUtils.swift 2. 导入 UyghurCharUtils.js 3. 使用 UyghurCharUtils 提供的以下方法 internal mutating func convert(_ text: String, type: ConvertType) -> String? internal mutating func basic2Extend(_ text: String) -> String? internal mutating func extend2Basic(_ text: String) -> String? internal mutating func basic2RExtend(_ text: String) -> String? internal mutating func rExtend2Basic(_ text: String) -> String? internal mutating func basicSyllable(_ text: String) -> String? */ // MARK: - UyghurCharUtilsDemo let source = "سالام swift" print("source: \(source)") guard let resultForBasic2Extend = UyghurCharUtils.shared.convert(source, type: .Basic2Extend) else { print("resultForBasic2Extend: nil") return } print("resultForBasic2Extend: \(resultForBasic2Extend)") guard let resultForExtend2Basic = UyghurCharUtils.shared.convert(resultForBasic2Extend, type: .Extend2Basic) else { print("resultForExtend2Basic: nil") return } print("resultForExtend2Basic: \(resultForExtend2Basic)") guard let resultForBasic2RExtend = UyghurCharUtils.shared.convert(source, type: .Basic2RExtend) else { print("resultForBasic2RExtend: nil") return } print("resultForBasic2RExtend: \(resultForBasic2RExtend)") guard let resultForRExtend2Basic = UyghurCharUtils.shared.convert(resultForBasic2RExtend, type: .RExtend2Basic) else { print("resultForRExtend2Basic: nil") return } print("resultForRExtend2Basic: \(resultForRExtend2Basic)") guard let resultForBasicSyllable = UyghurCharUtils.shared.convert(source, type: .BasicSyllable) else { print("resultForBasicSyllable: nil") return } print("resultForBasicSyllable: \(resultForBasicSyllable)") } } ```