IUserAccessiablestringJoin Method |
Concatenates several strings in inArray into one string, joined be inSeperator.
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax string stringJoin(
string inSeperator,
string[] inAray
)
Parameters
- inSeperator
- Type: SystemString
a string to add between each two joined strings from inArray - inAray
- Type: SystemString
Return Value
Type:
Stringstring type
Examples
For the string array called str, containing these next strings: "H", "ve ", " nice d", "y" -
stringJoin("a", str) will return the string: "Have a nice day".
See Also