Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fanlia/iconv
Wrap iconv for vlang
https://github.com/fanlia/iconv
Last synced: about 1 month ago
JSON representation
Wrap iconv for vlang
- Host: GitHub
- URL: https://github.com/fanlia/iconv
- Owner: fanlia
- License: mit
- Created: 2021-07-22T10:16:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-23T08:29:14.000Z (over 3 years ago)
- Last Synced: 2024-08-04T01:05:19.629Z (5 months ago)
- Language: V
- Homepage:
- Size: 3.91 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-v - iconv - Wrap iconv for vlang. (Libraries / Text processing)
README
# iconv
Wrap iconv for vlang## Getting Started
```sh
v install fanlia.iconv
```## Usage
```v
import fanlia.iconvfn main() {
cd := iconv.open('gbk', 'utf-8')
defer { cd.close() }
gbk := cd.conv_string('你好')
println(gbk)
}
```
## License
MIT