×

Strings

Strings in Jelly are used in functions, and setting variables. To declare a String you can use the following syntax

"String Content"

or you can have a multiline string

"""
String Content
"""

Variables within a string

If you want to place a variable within a string, you can use ${<#Variable Name#>} to insert the variable directly into the string.

"Hello ${username}"

Tricky things with strings

If you wish to include a " in your string you must escape it using a backslash \ . These backslashes will be automatically removed when you build the Jellycut.