Split large string

String concatenation As per Documentation – Language Reference – Operators: & Concatenates/joins two strings. &= Concatenation assignment. Example: Global $g_sText = “Long ” & “string ” & “here.” & @CRLF $g_sText &= “More text.” & @CRLF ConsoleWrite($g_sText) Multi line statements As per Documentation – Language Reference – Comments (emphasis added, as it causes mentioned “unterminated … Read more