I am at my wit ends (being a regex novice). I need to split a string like this
"abc","","av,as","hello world","nice,name"
into
'abc'
'\blank\'
'av,as'
'hello world'
'nice,name'
Using c# or excel vbs, can someone help with the regex expression?

"abc\"123"would cause that iteration to fail. I'd follow Factor Mystic's advice and use a CSV parsing library.