| Crates.io | hypua |
| lib.rs | hypua |
| version | 0.2.0 |
| created_at | 2020-03-28 17:15:47.756248+00 |
| updated_at | 2020-03-28 18:46:03.153399+00 |
| description | 한양 PUA 코드로 인코딩된 옛한글을 첫가끝(IPF) 방식으로 변환하는 라이브러리 |
| homepage | |
| repository | https://github.com/kiwiyou/hypua/ |
| max_upload_size | |
| id | 223862 |
| size | 116,793 |
한양 PUA 코드로 인코딩된 옛한글을 첫가끝(IPF) 방식으로 변환하는 라이브러리
Cargo.toml의 dependencies 항목에 hypua를 추가합니다.[dependencies]
hypua = "0.1.0"
use hypua::to_ipf_string;
fn main() {
let text = "이런 젼로 어린 百姓이 니르고져 배 이셔도.";
println!("{}", to_ipf_string(text));
}