Socket
Book a DemoInstallSign in
Socket

embulk-filter-convert_unicode_sequence_to_string

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

embulk-filter-convert_unicode_sequence_to_string

bundlerRubygems
Version
0.1.1
Version published
Maintainers
1
Created
Source

Convert Unicode Sequence To String filter plugin for Embulk

TODO: Write short description here and build.gradle file.

Overview

  • Plugin type: filter

Configuration

  • target_columns: columns to convert (array of string)

Example

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

Build

$ ./gradlew gem  # -t to watch change of files and rebuild continuously

FAQs

Package last updated on 23 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts