Task
A supplier file contains full image URLs, relative paths, and empty cells. Only rows where the image link starts with http:// or https:// should be exported.
Short Answer
In image_url, add a row export condition: current value before transformations matches ^https?://.
How to Do It in Eofferix
- Open the
image_urlcolumn settings in the table editor.
The red frame shows where to open the required column settings. - In Export conditions, add: Current value, Before transformations, Regular expression, value
^https?://.
Only rows where image_url starts with http:// or https:// stay in the export. - Save the column settings.
Before / After
Before
source data| sku | image_url |
|---|---|
| SKU-1001 | https://cdn.example.com/1001.jpg |
| SKU-1002 | /upload/1002.jpg |
After
result| sku | image_url |
|---|---|
| SKU-1001 | https://cdn.example.com/1001.jpg |