Split large string
问题 I have a long text which needs to be converted to small strings so I can include it to an AutoIt script. If I include multi-line text it shows error unterminated string . So I should have: "numbercharswillbe10" &_ "othernumbersofcharwillbe10" &_ etc.. How can I split it with & _ -delimiters? 回答1: String concatenation As per Documentation - Language Reference - Operators: & Concatenates/joins two strings. &= Concatenation assignment. Example: Global $g_sText = "Long " & "string " & "here." &