I'm trying to make a small scripting programming language to test my skills.
I was wondering how I could split the parameters in a function. So the syntax goes like this:
test "bla,bla,bla", "othertext"
How could I split those 2 parameters at the ,
in the middle without worrying the ,
chars in the string? Is there a regex to make things a little more easy?