Description Usage Arguments Details
Function to append one string ('add') to another ('orig'), using a separator, without appending a duplicate.
1 | appendString(orig, app, sep = "\n")
|
orig |
- original string to append to |
app |
- string to append |
sep |
- string used to separate the original and appended strings. (default is newline) |
The following examples apply (taking sep='/'):
1: orig = ”, app = 'app', result = 'app'
2: orig = 'orig', app = 'app', result = 'orig/app'
3: orig = 'orig', app = 'orig', result = 'orig'
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.