2
Is there any way to get the arguments like 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 method String.Split(" ")
and it worked, but the doubt is, and if you want to put a field that has spaces, example:
if "esse campo tem espaços" = true
^^ ^^^^^^^^^^^^^^^^^^^^^^^^ ^ ^^^^
but you’re returning like this:
if "esse campo tem espaços" = true
^^ ^^^^^ ^^^^^ ^^^ ^^^^^^^^ ^ ^^^^
Instead of getting an array like this:
if
esse campo tem espaços
=
true
He’s separating what’s in the field too, then he’s like this:
if
esse
campo
tem
espaços
=
true
and conflict... There is some way to get the values within the field without this occurring?