TypeAssure Process
Convert "number" type column's string values into numeric ones
| name | income |
|---|---|
| John | 50000 abc |
| Marry | 60000 xyz |
| Peter | 100000 |
| Donald | 80000 |
->pipe(new ColumnMeta(array(
"income" => array(
"type" => "number"
)
)))
->pipe(new TypeAssure())
| name | income |
|---|---|
| John | 50,000 |
| Marry | 60,000 |
| Peter | 100,000 |
| Donald | 80,000 |