Convert unicode sequence to string filter plugin.
- Plugin type: filter
- target_columns: columns to convert (array of string)
Say input.csv is as follows:
id,name
0,hoge\u0000
1,fuga\u0041
2,normal_string
filters:
- type: convert_unicode_sequence_to_string
target_columns:
- name
converts unicode escape sequence like below:
id,name
0,hoge
1,fugaA
2,normal_string
$ ./gradlew gem
$ embulk run ./embulk-example/seed.yml -I lib
docker environment:
docker-compose run embulk bash
embulk run ./embulk-example/seed.yml -I lib
$ ./gradlew gem # -t to watch change of files and rebuild continuously
./gradlew classpath # build
./gradlew checkstyle # check style