2 unstable releases
0.2.0 | Mar 28, 2020 |
---|---|
0.1.0 | Mar 28, 2020 |
34KB
117 lines
hypua
한양 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));
}
lib.rs
:
PUA 코드를 첫가끝 (IPF) 방식으로 변환하는 라이브러리입니다.
사용 예
use hypua::to_ipf_string;
let text = "이런 젼로 어린 百姓이 니르고져 배 이셔도.";
println!("{}", to_ipf_string(text));
Dependencies
~160KB