Summary
Concatenates strings together.
Description
Concatenates a string with a second string(s). The second parameter can be a string or array.
Route
POST /string/concat
Roles
admin
Parameters
DetailsExampleSchema
Name | Type | Required | Description |
---|---|---|---|
str | string | yes | The first string to concatenate |
stringN | array | yes | String(s) to concatenate to the first string (can also be an array) |
Return
DetailsExampleSchema
Name | Type | Description |
---|---|---|
combinedStrings | string | The combination of the args |