The functionality of the Customer Data Parser for Japan consists of the following three parsing methods.
- Personal name parsing (PNP)
- Business name parsing (BNP)
- Personal/Business parsing (BNP_CLUE)
Personal Name Parsing (PNP)
PNP separates personal names. The Parser separates the input attribute into a last name, a first name, a title and an honorific. It is assumed that the input data contains only the name of one person, but you can create multiple output records when you encounter multiple personal names.
- Example
-
Input Data
Last Name
First Name
Honorific
山田花子様
山田
花子
様
This input data produces 3 tokens.
Business Name Parsing (BNP)
BNP separates business names. The Parser separates the input attribute into a business name, a business type and a branch name. You can create a consistent business name by registering the business name pattern to the Customized Definitions Table.
- Example
-
Input Data
Business Name
Principle Name
Business Type
Branch
(株)AB総務部
AB
エービー
(株)
総務部
This input data produces 4 tokens.
BNP_CLUE (Personal/Business Name Parsing)
BNP_CLUE determines personal/business category and separates the input record accordingly.
- Example
-
Input Data
Last Name
First Name
Honorific
Business Name
Principle Name
Business Type
Branch
(株)AB総務部山田花子様
山田
花子
様
AB
エービー
(株)
総務部
This input data produces 7 tokens.
Click the following topics to setup and run the Customer Data Parser process.