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]) -> String

    Parameters

    inNewTextLineArray

    The Array of String that will be appended to the end of the Array.

    to

    The Array of String that will precede the previous Array.

    Return Value

    The entire composite Array as a single String, joined by linefeeds.