Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 1011 Bytes

File metadata and controls

38 lines (33 loc) · 1011 Bytes

Pinyin - Convert Chinese to Pinyin for specific column in CSV

sample file
┌─────┬────────┐
│ idx │ name   │
├─────┼────────┤
│  1  │ 汤姆   │
│  2  │ 杰瑞   │
│  3  | hansen |
└─────┴────────┘

upper

Set criteria (Select column: name, pinyin style: upper)

┌─────┬────────┐
│ idx │ name   │
├─────┼────────┤
│  1  │ TANGMU │
│  2  │ JIERUI │
│  3  | hansen |
└─────┴────────┘

lower

Set criteria (Select column: name, pinyin style: lower)

┌─────┬────────┐
│ idx │ name   │
├─────┼────────┤
│  1  │ tangmu │
│  2  │ jierui │
│  3  | hansen |
└─────┴────────┘