Triple quoted string literals

Terminal symbol in the grammar: TRIPLESTR_LIT.

String literals can also be delimited by three double quotes “”” … “””. Literals in this form may run for several lines, may contain “ and do not interpret any escape sequences. For convenience, when the opening “”” is followed by a newline (there may be whitespace between the opening “”” and the newline), the newline (and the preceding whitespace) is not included in the string. The ending of the string literal is defined by the pattern “””[^”], so this:

  1. """"long string within quotes""""

Produces:

  1. "long string within quotes"