Update release.yml
Transform strings easily in Swift.
You can add this package to Package.swift, include it in your target dependencies.
Package.swift
let package = Package( dependencies: [ .package(url: "https://github.com/uhooi/swift-string-transform", .upToNextMajor(from: "0.4.0")), ], targets: [ .target( name: "<your-target-name>", dependencies: ["StringTransform"]), ] )
You can add this package on Xcode. See documentation.
This library is available through CocoaPods. To install it, simply add the following line to your Podfile:
Podfile
pod 'StringTransform', '~> 0.4.0'
This library is available through Carthage. To install it, simply add the following line to your Cartfile:
Cartfile
github "uhooi/swift-string-transform" ~> 0.4.0
You can just import StringTransform to use it.
StringTransform
import StringTransform "てすと".toKatakana() // "テスト" "テスト".toHiragana() // "てすと"
I would be happy if you contribute :)
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
swift-string-transform
Transform strings easily in Swift.
Table of Contents
Installation
Swift Package Manager (Recommended)
Package
You can add this package to
Package.swift
, include it in your target dependencies.Xcode
You can add this package on Xcode. See documentation.
CocoaPods
This library is available through CocoaPods. To install it, simply add the following line to your
Podfile
:Carthage
This library is available through Carthage. To install it, simply add the following line to your
Cartfile
:How to use
You can just import
StringTransform
to use it.Contribution
I would be happy if you contribute :)
Stats