How to exit from FOREACH - IF ELSE?

Hello,

foreach (var elem in IBAN_temp)

{

IF STRINGKEY @elem NotEqualTo ""

BLOCK:ConstantString

LABEL:IBAN

  value = $"<elem>"

  => VAR @IBAN

ENDBLOCK

END

}

If @elem contains something, then I put the thing into @IBAN and I exit immediately FOREACH loop, how can I do that ? I don’ find any command in the documentation about it

Ok, it’s break ; !

Yeah I didn’t add syntax sugar for that, so just use the C# keyword and the semicolon ^^