Task
A table contains a value such as 4.8 (120 reviews). The result needs separate rating and reviews_count columns.
Short answer
Create two output columns from the same source field: keep the decimal rating in one column and the number after the opening bracket in the other.
How to do it in Eofferix
- Upload CSV or XLSX and open the table editor.

The table shows two output columns built from one source field. - Create
ratingfromrating_textand keep only the rating number with a regular expression.
The ratingcolumn keeps only the rating number. - Create
reviews_countfromrating_text, keep the(plus number fragment, then remove(. - Save the template and test several rows with different review counts.
Before / after
The data below is a training example and does not belong to real user files.
Before
source data| sku | rating_text |
|---|---|
| SKU-1001 | 4.8 (120 reviews) |
After
result| sku | rating | reviews_count |
|---|---|---|
| SKU-1001 | 4.8 | 120 |