Regex to split csv

Does anyone know what regex I’d use to split a string of csv data?

I don’t need to worry about carriage returns, just commas, as all the values are on one line.

Cheers

why don’t you use Separate (String) for such simple split patterns?

Maybe because of the difference in performance ?

See https://discourse.vvvv.org/t/8699

That’s right Bjoern.

Thanks for the link.

Hmmm, seems in my case regexpr is wayyy slower than separate…

edit (my case involves a constantly changing spread)