ColumnMeta Process

String meta

nameincome
John 50,000
Marry 60,000
Peter 100,000
Donald 80,000

->pipe(new ColumnMeta(array(
    "name" => array(
        "label" => "NAME",
        "type" => "string",
        "prefix" => "prefix_",
        "suffix" => "_suffix",
    )
)))
NAMEincome
prefix_John_suffix 50,000
prefix_Marry_suffix 60,000
prefix_Peter_suffix 100,000
prefix_Donald_suffix 80,000
Description