Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating resource.
Please try to avoid dependencies to third-party libraries and frameworks.
s = """Huey Dewey Louie"""
s := `Huey Dewey Louie`
$s = "Perl normally allows strings to contain newlines."; $s = q{ There are a good few ways to create multiline text strings in perl. }; $s =<<EOSTR; One of them is called the "here doc" (lifted from various UNIX shells). A 'here doc' is the <<tag construct. Perl continues to treat all the text found as part of the string until there's a line containing the EOSTR tag at the beginning EOSTR
let s = "line 1 line 2 line 3";
$s = "This string is spanning three lines";
auto s = "One, Two, Three ";
var s = '''A multi-line string''';
var _s: String; begin _s := 'one' + LineEnding + 'two' + LineEnding + 'three' end.
s = "Spanning string works"
s = "Spanning string works"
s = unlines [ "several" ,"lines" ,"of" ,"text"]
S = "Strings may span across multiple lines" "and they can" "have as many portions" "as you want" "all of them quoted".
s = [[ Huey Dewey Louie ]]
auto s = ` line1 line2 line3`; auto r = r" line1 line2 line3`;
string s = @"Huey Dewey Louie";
s = """ multiline heredoc """
char *s = "Huey\n" "Dewey\n" "Louie";
let s = "This is a very long string which needs " + "to wrap across multiple lines because " + "otherwise my code is unreadable.";
let s = "This is a very long string which needs \ to wrap across multiple lines because \ otherwise my code is unreadable.";
$s = <<<EOD Huey Dewey Louie EOD;
let s = r#"Huey Dewey Louie"#;
String s = "This is a very long string which needs " + "to wrap across multiple lines because " + "otherwise my code is unreadable.";
val s = """line 1 line 2 line 3"""
(def s "Murs, ville, Et port, Asile De mort, Mer grise Où brise La brise, Tout dort.")
str = 'Huey '.. 'Dewey '.. 'Louie'
#include <string>
std::string multiline = R"( Earth is a planet. So is the Jupiter)";
(setf s "a b c d")
let s = `This is a very long string which needs to wrap across multiple lines because otherwise my code is unreadable.`;
val myStr = """ This is my multi-line string. """
s = "Hello & &World"
s : String := "Will this compile? " & "Oh yes it will";
IDENTIFICATION DIVISION. PROGRAM-ID. multi-line string. DATA DIVISION. WORKING-STORAGE SECTION. 01 s PIC X(20). 01 str PIC X(5) VALUE 'COBOL'. 01 str1 PIC X(4) VALUE 'RULE'. 01 str2 PIC X(3) VALUE 'THE'. 01 str3 PIC X(5) VALUE 'WORLD'. PROCEDURE DIVISION. STRING str ' ' str1 ' ' str2 ' ' str3 DELIMITED BY SIZE INTO s STOP RUN.
Dim myStr as String = " This Is Multiline Text!"