/tripkit/CommonCoreLegacy/com.skedgo.tripkit.common.util/StringUtils/join
join
\ fun join(strings: ArrayList<String>?): String
\ fun join(strings: List<String>?, separator: String): String
Joins the elements of the provided List into a single String containing the provided elements.
Return
The joined String, empty if null List input
Parameters
androidJvm
strings | The List of values to join together, may be null |
separator | The separator character to use |