I have a variable with values like
l_buffer := '10223,1600003B,Admin Officer,00000004,"Org Land, Inc.",ORGA03,ORGA03 HR & Admin'
Now I am using while condinition to check the comma delimeted columns. But in that case it is considering "Org Land, Inc."
as two columns
Org Land and Inc. But because it is enclosed with double quotes it should be considered as one. Is there a way regex can solve this issue ?