Task
A table contains youtube.com/watch?v=..., youtu.be/..., or /embed/... links. The import needs a separate youtube_id column.
Short answer
Create youtube_id from the URL and keep only the 11-character video identifier with a regular expression.
How to do it in Eofferix
- Upload the CSV or XLSX with video links and open the table editor.

The table shows the source URL and the output youtube_idcolumn. - Create
youtube_idfromyoutube_urland add aRegular expression->Remove everything exceptrule.
The rule keeps the 11-character fragment used as the video ID. - Use
[A-Za-z0-9_-]{11}as the pattern. For standard YouTube URLs it leaves only the video ID. - Save the template and test
watch?v=,youtu.be/, and/embed/rows.
Before / after
The data below is a training example and does not belong to real user files.
Before
source data| sku | youtube_url |
|---|---|
| SKU-1001 | https://www.youtube.com/watch?v=iwGFalTRHDA&feature=related |
| SKU-1002 | https://youtu.be/n17B_uFF4cA |
After
result| sku | youtube_id |
|---|---|
| SKU-1001 | iwGFalTRHDA |
| SKU-1002 | n17B_uFF4cA |