TOML Strings

MultiLine Literal String

re = '''\d{2} apps is t[wo]o many'''
lines = '''
The first newline is
trimmed in raw strings.
All other whitespace
is preserved.
'''

Literal String

path = 'C:\Users\nodejs\templates'
path2 = '\\User\admin$\system32'
quoted = 'Tom "Dubs" Preston-Werner'
regex = '<\i\c\*\s\*>'

Surrounded by single quotes. Escaping are not allowed.

Multiline String

multiLineString = """
Multi-line basic strings are surrounded
by three quotation marks on each side
and allow newlines. 
"""
Comments