Functions
The following functions are available globally.
-
This function will append one Array of String to another, returning a simple, joined String.
Declaration
Swift
func appendTextLines(_ inNewTextLineArray: [String], to: [String]) -> StringParameters
inNewTextLineArrayThe Array of String that will be appended to the end of the Array.
toThe Array of String that will precede the previous Array.
Return Value
The entire composite Array as a single String, joined by linefeeds.
Functions Reference