mirror of
https://github.com/LingCoder/OnJava8.git
synced 2026-08-25 23:43:28 +08:00
21 lines
443 B
Plaintext
21 lines
443 B
Plaintext
"""foobar"""
|
|
"""fo"o
|
|
#bar
|
|
baz"""
|
|
'''foobar'''
|
|
'''fo'o
|
|
#bar
|
|
baz'''
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["triple-quoted-string", "\"\"\"foobar\"\"\""],
|
|
["triple-quoted-string", "\"\"\"fo\"o\r\n#bar\r\nbaz\"\"\""],
|
|
["triple-quoted-string", "'''foobar'''"],
|
|
["triple-quoted-string", "'''fo'o\r\n#bar\r\nbaz'''"]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for triple-quoted strings. |