Background for Skyrim SE
Member of the DbMiscFunctions script
stringfunctionJoinStringArray(string[]akArray, stringDivider="|", boolIgnoreDuplicates=false)Global

Description

Documentation Comment

Opposite of StringUtil.Split. Convert string array to single string, elements separated by divider.
If IgnoreDuplicates == true, only adds an element to the string once


Caveats


Parameters

string[]akArray

stringDivider="|"

boolIgnoreDuplicates=false


Examples

Auto-Generated Example

string[] myStringArray__akArray
string myString__Divider
bool myBool__IgnoreDuplicates

string returnedValue = DbMiscFunctions.JoinStringArray(myStringArray__akArray, myString__Divider, myBool__IgnoreDuplicates)
Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.