I'm trying to get the three types of variavles, and comma. using this RegEx
"(\"(?:\"\"|[^\"])*\"|(?:true|false)*(?:\\d+)*(?:[,])*)"
The text pattern is something like this:
"Felis Catus", true, false, 18
"Pig "eggos" domesticus", , false, 6
"Gallus domesticus", false, true, 5
The string and number is doing well, but i can't get the comma separated from bool values, i get mathces like this:
"Felis Catus"
,
true,
false,
18
Comma must be separated from, in my example (true and false) The output must be:
"Felis Catus"
,
true
,
false
,
18