Skip to content

extractstrTR

datacorner edited this page Dec 2, 2023 · 3 revisions

extractstrTR Transformer

Purpose

The purpose of this transformer is extract a part of a column value (sub string) and update the column accordingly.

Configuration by using the SQL directly in the configuration file

The specific configuration (as a Datasource) in the configuration file section parameters inclues the following parameters:

  • column: The Column name
  • start: start the substring at this position
  • length: extract this length of the column value

Data sources configuration

  • Inputs : 1 input
  • Outputs : 1 output

Configuration example:

    "transformers":  [
    { 
        "id": "T2",
        "classname": "pipelite.transformers.extractstrTR",
        "inputs" : [ "S1" ],
        "outputs" : [ "S2" ],
        "parameters": {
            "column": "concept:name",
            "start": 2,
            "length": 3
        }   
    }],
    ... ] ...

🏠 Home
πŸ”‘ Main concepts
πŸ’» Installation
πŸ”¨ Configuration
πŸš€ Running

Supported Data Sources
πŸ“„ CSV File
πŸ“‘ XES File
πŸ“ƒ Excel File
πŸ“€ ODBC
🏒 SAP
🎒 ABBYY Timeline

Supported Transformations
πŸ”€ Pass Through
πŸ“Ά Dataset Profiling
πŸ”‚ Concat 2 Data sources
πŸ†– SubString
πŸ†’ Column Transformation
πŸ”ƒ Join data sources
πŸ”ƒ Lookup
πŸ”€ Rename Column Name

Extending pipelite
βœ… how to
βœ… Adding new Data sources
βœ… Adding new Transformers
βœ… Adding new Pipelines

Clone this wiki locally