Is there any way to get the arguments as in the example below, in a separate variable? I'm creating a language, and this is an example block:
for 0 to 250 step 50
^^^ ^ ^^ ^^^ ^^^^ ^^
Then I used the String.Split(" ")
method and it worked, but the question is, and if you want to put a field that has spaces, for example:
if "esse campo tem espaços" = true
^^ ^^^^^^^^^^^^^^^^^^^^^^^^ ^ ^^^^
but it is returning like this:
if "esse campo tem espaços" = true
^^ ^^^^^ ^^^^^ ^^^ ^^^^^^^^ ^ ^^^^
Instead of getting into an array like this:
if
esse campo tem espaços
=
true
he is separating what is in the field too, so it looks like this:
if
esse
campo
tem
espaços
=
true
and the conflict ... Is there any way to get the values inside the field without doing this?