Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

String literal

From Wikipedia, the free encyclopedia
Delimited series of characters that represent a string in code

Astring literal oranonymous string is aliteral for astring value insource code. Commonly, aprogramming language includes a string literal code construct that is a series ofcharacters enclosed inbracket delimiters – usually quote marks. In many languages, the text"foo" is a string literal that encodes the textfoo but there are many other variations.

Syntax

[edit]

Bracket delimited

[edit]

A bracketed string literal is delimited by a start and an end character. The language can specify the use of any characters as delimiters.

Quotation is the most common way to delimit a string literal. Many languages support double-quotes (i.e."Hello") and/or single-quotes (i.e.'there'). When both are supported, delimiter collision can be minimized by treating one style of quotes as normal text when enclosed in quotes of the other style. InPython the literal"Dwayne 'the rock' Johnson" is valid since the outer quotes are double, making the inner single quotes regular text.

Anempty string is written as"" or''.

Paired delimiters are two differenttypes of characters where one is used at the beginning of a literal and the other used at the end. With paired delimiters, the language can support embedding quotes in the literal text – as long as they all are paired and don't partially jump out of their own scope. For example,PostScript uses parentheses, as in(The quick (brown fox)) andm4, usesbacktick` at the start, andapostrophe' at the end.Tcl allows both quotes and braces, as in"The quick brown fox" or{The quick {brown fox}}; this derives from the single quotations in Unix shells and the use of braces inC for compound statements, since blocks of code is in Tcl syntactically the same thing as string literals – that the delimiters are paired is essential for making this feasible.

Quotation is most commonly via unpaired quotes, but some tools and character sets support paired quotes. Unpaired quotes are quotes that don't have unique left-side-quote and right-side-quote variants, including"" or''. TheUnicode character set includes paired versions:

 “Hi there!” ‘Hi there!’ „Hi there!“ «Hi there!»

Scope Mixing

[edit]

Scope mixing is wherescopes are mixed together instead of beingpurely hierarchical.[a]

In other words, "scope mixing" is where anunambiguous beginning delimiter (or an unambiguous ending delimiter) doesn't exist.

Examples of a quote jumping out of its own scope (which are illegal strings) would be:

  • "InsideTheOuterString 'InnerString_ButWithUnmatchedEndingSingleQuoteThatRendersThisStringInvalid" ErroneousStringThatIsSomehowInsideTheInnerStringYetNotInsideTheOuterString'
  • "1 '2" 3'
  • "Inside1 'InsideBoth1and2" Inside2'

String literalsdo not allow scope mixing, as it creates ambiguous programs. A string literal may sometimesappear to have mixed scopes, but there areoperator-precedence rules[b]made for each specific programming language to prevent ambiguity, such as the tactic of reading expressions from the leftmost character to the rightmost character, giving a left" symbol a higher precedence (i.e., priority) over any other quotation mark that comes after it (on the same line).

As mentioned earlier, nested quotes can be valid, such as in"Dwayne 'the rock' Johnson", but they require some method that employs a hierarchy (typically astack data structure), regardless of whether that hierarchy usesunique delimiting characters,escape characters, orrepeated-character delimiters.

"Scope-mixing" is a specific case of Delimiter Collision, explained later in this page.

Whitespace delimited

[edit]

A language might support multi-line strings. InYAML, string literals may be specified by the relative positioning ofwhitespace andindentation.

-title:An example multi-line string in YAMLbody:|This is a multi-line string."special" metacharacters mayappear here. The extent of this string isrepresented by indentation.

Word delimited

[edit]

Some languages, such as Perl and PHP, allow string literals that are delimited the same as words in anatural language. In the following Perl code, for example,red,green, andblue are string literals, even though not quoted:

%map=(red=>0x00f,blue=>0x0f0,green=>0xf00);

Perl treats a non-reserved sequence of alphanumeric characters as string literal in most contexts. For example, the following two lines of Perl are equivalent:

$y="x";$y=x;

Declarative notation

[edit]

The length of a literal can be encoded into the beginning of the text which alleviates the need for marking the beginning and end of a string. For example, inFORTRAN, string literals were written inHollerith notation, where a decimal count of the number of characters was followed by the letter H, and then the characters of the string.

35HAnexampleHollerithstringliteral

A drawback of this technique is that it is relatively error-prone unless length insertion is automated, especially for multi-byte encodings. Advantages include: alleviates need to search for the end delimiter and therefore requires lesscomputational overhead, preventsdelimiter collision issues and enables the inclusion ofmetacharacters that might otherwise be mistaken as commands

Delimiter collision

[edit]
Main article:Delimiter collision

When using quoting, if one wishes to represent the delimiter itself in a string literal, one runs into the problem ofdelimiter collision. For example, if the delimiter is a double quote, one cannot simply represent a double quote itself by the literal""" as the second quote is interpreted as the end of the string literal, not as the value of the string, and similarly one cannot write"This is "in quotes", but invalid." as the middle quoted portion is instead interpreted as outside of quotes. There are various solutions, the most general-purpose of which is using escape sequences, such as"\"" or"This is \"in quotes\" and properly escaped.", but there are many other solutions.

Paired quotes, such as braces in Tcl, allow nested strings, such as{foo {bar} zork} but do not otherwise solve the problem of delimiter collision, since an unbalanced closing delimiter cannot simply be included, as in{}}.

Doubling up

[edit]

A number of languages, includingPascal,BASIC,DCL,Smalltalk,SQL,J, andFortran, avoid delimiter collision bydoubling up on the quotation marks that are intended to be part of the string literalitself:

'This Pascal string''contains two apostrophes'''
"I said, ""Can you hear me?"""

Dual quoting

[edit]

Some languages, such asFortran,Modula-2,JavaScript,Python, andPHP allow more than one quoting delimiter; in the case of two possible delimiters, this is known asdual quoting. Typically, this consists of allowing the programmer to use either single quotations or double quotations interchangeably – each literal must use one or the other.

"This is John's apple."'I said, "Can you hear me?"'

This does not allow having a single literal with both delimiters in it, however. This can be worked around by using several literals and usingstring concatenation:

'I said, "This is '+"John's"+' apple."'

Python hasstring literal concatenation, so consecutive string literals are concatenated even without an operator, so this can be reduced to:

'I said, "This is '"John's"' apple."'

Delimiter quoting

[edit]

C++11 introduced so-calledraw string literals. They consist, essentially of

R"end-of-string-id (content )end-of-string-id ",

that is, afterR" the programmer can enter up to 16 characters except whitespace characters, parentheses, or backslash, which form theend-of-string-id (its purpose is to be repeated to signal the end of the string,eos id for short), then an opening parenthesis (to denote the end of the eos id) is required. Then follows the actual content of the literal: Any sequence characters may be used (except that it may not contain a closing parenthesis followed by the eos id followed a quote), and finally – to terminate the string – a closing parenthesis, the eos id, and a quote is required.
The simplest case of such a literal is with empty content and empty eos id:R"()".
The eos id may itself contain quotes:R""(I asked, "Can you hear me?")"" is a valid literal (the eos id is" here.)
Escape sequences don't work in raw string literals.

D supports a few quoting delimiters, with such strings starting withq" plus an opening delimiter and ending with the respective closing delimiter and". Available delimiter pairs are(),<>,{}, and[]; an unpaired non-identifier delimiter is its own closing delimiter. The paired delimiters nest, so thatq"(A pair "()" of parens in quotes)" is a valid literal; an example with the non-nesting/ character isq"/I asked, "Can you hear me?"/".
Similar to C++11, D allows here-document-style literals with end-of-string ids:

q"end-of-string-id newlinecontent newlineend-of-string-id "

In D, theend-of-string-id must be an identifier (alphanumeric characters).

In some programming languages, such assh andPerl, there are different delimiters that are treated differently, such as doing string interpolation or not, and thus care must be taken when choosing which delimiter to use; see the section ondifferent kinds of strings below.

Multiple quoting

[edit]

A further extension is the use ofmultiple quoting, which allows the author to choose which characters should specify the bounds of a string literal.

For example, inPerl:

qq^I said, "Can you hear me?"^qq@I said, "Can you hear me?"@qq§I said, "Can you hear me?"§

all produce the desired result. Although this notation is more flexible, few languages support it; other than Perl,Ruby (influenced by Perl) andC++11 also support these. A variant of multiple quoting is the use ofhere document-style strings.

Lua (as of 5.1) provides a limited form of multiple quoting, particularly to allow nesting of long comments or embedded strings. Normally one uses[[ and]] to delimit literal strings (initial newline stripped, otherwise raw), but the opening brackets can include any number of equal signs, and only closing brackets with the same number of signs close the string. For example:

localls=[=[This notation can be used for Windows paths:local path = [[C:\Windows\Fonts]]]=]

Multiple quoting is particularly useful withregular expressions that contain usual delimiters such as quotes, as this avoids needing to escape them. An early example issed, where in the substitution commands/regex/replacement/ the default slash/ delimiters can be replaced by another character, as ins,regex,replacement, .

Constructor functions

[edit]

Another option, which is rarely used in modern languages, is to use a function to construct a string, rather than representing it via a literal. This is generally not used in modern languages because the computation is done at run time, rather than at parse time.

For example, early forms ofBASIC did not include escape sequences or any other workarounds listed here, and thus one instead was required to use theCHR$ function, which returns a string containing the character corresponding to its argument. InASCII the quotation mark has the value 34, so to represent a string with quotes on an ASCII system one would write

"I said, "+CHR$(34)+"Can you hear me?"+CHR$(34)

In C, a similar facility is available viasprintf and the%c "character" format specifier, though in the presence of other workarounds this is generally not used:

charbuffer[32];snprintf(buffer,sizeofbuffer,"This is %cin quotes.%c",34,34);

These constructor functions can also be used to represent nonprinting characters, though escape sequences are generally used instead. A similar technique can be used in C++ with thestd::string stringification operator.

Escape sequences

[edit]
Main article:Escape sequence

Escape sequences are a general technique for representing characters that are otherwise difficult to represent directly, including delimiters, nonprinting characters (such as backspaces), newlines, and whitespace characters (which are otherwise impossible to distinguish visually), and have a long history. They are accordingly widely used in string literals, and adding an escape sequence (either to a single character or throughout a string) is known asescaping.

One character is chosen as a prefix to give encodings for characters that are difficult or impossible to include directly. Most commonly this isbackslash; in addition to other characters, a key point is that backslash itself can be encoded as a double backslash\\ and for delimited strings the delimiter itself can be encoded by escaping, say by\" for ". A regular expression for such escaped strings can be given as follows, as found in theANSI C specification:[1][c]

"(\\.|[^\\"])*"

meaning "a quote; followed by zero or more of either an escaped character (backslash followed by something, possibly backslash or quote), or a non-escape, non-quote character; ending in a quote" – the only issue is distinguishing the terminating quote from a quote preceded by a backslash, which may itself be escaped. Multiple characters can follow the backslash, such as\uFFFF, depending on the escaping scheme.

An escaped string must then itself belexically analyzed, converting the escaped string into the unescaped string that it represents. This is done during the evaluation phase of the overall lexing of the computer language: the evaluator of the lexer of the overall language executes its own lexer for escaped string literals.

Among other things, it must be possible to encode the character that normally terminates the string constant, plus there must be some way to specify the escape character itself. Escape sequences are not always pretty or easy to use, so many compilers also offer other means of solving the common problems. Escape sequences, however, solve every delimiter problem and most compilers interpret escape sequences. When an escape character is inside a string literal, it means "this is the start of the escape sequence". Every escape sequence specifies one character which is to be placed directly into the string. The actual number of characters required in an escape sequence varies. The escape character is on the top/left of the keyboard, but the editor will translate it, therefore it is not directly tapeable into a string. The backslash is used to represent the escape character in a string literal.

Many languages support the use ofmetacharacters inside string literals. Metacharacters have varying interpretations depending on the context and language, but are generally a kind of 'processing command' for representing printing or nonprinting characters.

For instance, in aC string literal, if the backslash is followed by a letter such as "b", "n" or "t", then this represents a nonprintingbackspace,newline ortab character respectively. Or if the backslash is followed by 1-3octal digits, then this sequence is interpreted as representing the arbitrary code unit with the specified value in the literal's encoding (for example, the correspondingASCII code for an ASCII literal). This was later extended to allow more modernhexadecimal character code notation:

"I said,\t\t\x22Can you hear me?\x22\n"
Escape SequenceUnicodeLiteral Characters placed into string
\0U+0000null character[2][3]
(typically as a special case of \ooo octal notation)
\aU+0007alert[4][5]
\bU+0008backspace[4]
\fU+000Cform feed[4]
\nU+000Aline feed[4] (or newline in POSIX)
\rU+000Dcarriage return[4] (or newline in Mac OS 9 and earlier)
\tU+0009horizontal tab[4]
\vU+000Bvertical tab[4]
\eU+001Bescape character[5] (GCC,[6]clang andtcc)
\u####U+####16-bitUnicode character where #### are four hex digits[3]
\U########U+######32-bit Unicode character where ######## are eight hex digits (Unicode character space is currently only 21 bits wide, so the first two hex digits will always be zero)
\u{######}U+######21-bit Unicode character where ###### is a variable number of hex digits
\x##Depends on encoding[d]8-bit character specification where # is a hex digit. The length of a hex escape sequence is not limited to two digits, instead being of an arbitrary length.[4]
\oooDepends on encoding[d]8-bit character specification where o is an octal digit[4]
\"U+0022double quote (")[4]
\&non-character used to delimit numeric escapes in Haskell[2]
\'U+0027single quote (')[4]
\\U+005Cbackslash (\)[4]
\?U+003Fquestion mark (?)[4]

Note: Not all sequences in the list are supported by all parsers, and there may be other escape sequences which are not in the list.

Nested escaping

[edit]

When code in one programming language is embedded inside another, embedded strings may require multiple levels of escaping. This is particularly common in regular expressions and SQL query within other languages, or other languages inside shell scripts. This double-escaping is often difficult to read and author.

Incorrect quoting of nested strings can present a security vulnerability. Use of untrusted data, as in data fields of an SQL query, should useprepared statements to prevent acode injection attack. InPHP 2 through 5.3, there was a feature calledmagic quotes which automatically escaped strings (for convenience and security), but due to problems was removed from version 5.4 onward.

Raw strings

[edit]

A few languages provide a method of specifying that a literal is to be processed without any language-specific interpretation. This avoids the need for escaping, and yields more legible strings.

Raw strings are particularly useful when a common character needs to be escaped, notably in regular expressions (nested as string literals), where backslash\ is widely used, and in DOS/Windowspaths, where backslash is used as a path separator. The profusion of backslashes is known asleaning toothpick syndrome, and can be reduced by using raw strings. Compare escaped and raw pathnames in C#:

"The Windows path is C:\\Foo\\Bar\\Baz\\"@"The Windows path is C:\Foo\Bar\Baz\"

Extreme examples occur when these are combined –Uniform Naming Convention paths begin with\\, and thus an escaped regular expression matching a UNC name begins with 8 backslashes,"\\\\\\\\", due to needing to escape the string and the regular expression. Using raw strings reduces this to 4 (escaping in the regular expression), as in C#@"\\\\".

In XML documents,CDATA sections allows use of characters such as & and < without an XML parser attempting to interpret them as part of the structure of the document itself. This can be useful when including literal text and scripting code, to keep the documentwell formed.

<![CDATA[  if (path!=null && depth<2) { add(path); }  ]]>

Multiline string literals

[edit]

In many languages, string literals can contain literal newlines, spanning several lines. Alternatively, newlines can be escaped, most often as\n. For example:

echo'foobar'

and

echo-e"foo\nbar"

are both validBASH statements, both producing the same output:

foobar

Languages that allow literal newlines includeBASH,Lua,Perl,PHP,R, andTcl. In some other languages string literals cannot include newlines.

Two issues with multiline string literals are leading and trailing newlines, and indentation. If the initial or final delimiters are on separate lines, there are extra newlines, while if they are not, the delimiter makes the string harder to read, particularly for the first line, which is often indented differently from the rest. Further, the literal must be unindented, as leading whitespace is preserved – this breaks the flow of the code if the literal occurs within indented code.

The most common solution for these problems ishere document-style string literals. Formally speaking, ahere document is not a string literal, but instead a stream literal or file literal. These originate in shell scripts and allow a literal to be fed as input to an external command. The opening delimiter is<<END whereEND can be any word, and the closing delimiter isEND on a line by itself, serving as a content boundary – the<< is due to redirectingstdin from the literal. Due to the delimiter being arbitrary, these also avoid the problem of delimiter collision. These also allow initial tabs to be stripped via the variant syntax<<-END though leading spaces are not stripped. The same syntax has since been adopted for multiline string literals in a number of languages, most notably Perl, and are also referred to ashere documents, and retain the syntax, despite being strings and not involving redirection. As with other string literals, these can sometimes have different behavior specified, such as variable interpolation.

Python, whose usual string literals do not allow literal newlines, instead has a special form of string, designed for multiline literals, calledtriple quoting. These use a tripled delimiter, either''' or""". These literals are especially used for inline documentation, known asdocstrings.

Tcl allows literal newlines in strings and has no special syntax to assist with multiline strings, though delimiters can be placed on lines by themselves and leading and trailing newlines stripped viastring trim, whilestring map can be used to strip indentation.

String literal concatenation

[edit]

A few languages providestring literal concatenation, where adjacent string literals are implicitly joined into a single literal at compile time. This is a feature of C,[7][8] C++,[9] D,[10] Ruby,[11] and Python,[12] which copied it from C.[13] Notably, this concatenation happens at compile time, duringlexical analysis (as a phase following initial tokenization), and is contrasted with both run timestring concatenation (generally with the+ operator)[14] and concatenation duringconstant folding, which occurs at compile time, but in a later phase (after phrase analysis or "parsing"). Most languages, such as C#, Java[15] and Perl, do not support implicit string literal concatenation, and instead require explicit concatenation, such as with the+ operator (this is also possible in D and Python, but illegal in C/C++ – see below); in this case concatenation may happen at compile time, via constant folding, or may be deferred to run time.

Motivation

[edit]

In C, where the concept and term originate, string literal concatenation was introduced for two reasons:[16]

  • To allow long strings to span multiple lines with proper indentation in contrast to line continuation, which destroys the indentation scheme; and
  • To allow the construction of string literals by macros (viastringizing).[17]

In practical terms, this allows string concatenation in early phases of compilation ("translation", specifically as part of lexical analysis), without requiring phrase analysis or constant folding. For example, the following is valid C:

chars[]="hello, ""world";printf("hello, ""world");

However, the following is invalid:

chars[]="hello, "+"world";printf("hello, "+"world");

This is because string literals havearray type,char[] (C) orconst char[] (C++), which cannot be added; this is not a restriction in most other languages. Do note thatoperator+ isoverloaded for string literals in C++.

This is particularly important when used in combination with theC preprocessor, to allow strings to be computed following preprocessing, particularly in macros.[13] As a simple example:

charfile_and_message[]=__FILE__": message";

will (if the file is called a.c) expand to:

charfile_and_message[]="a.c"": message";

which is then concatenated, being equivalent to:

charfile_and_message[]="a.c: message";

A common use case is in constructingprintf() orscanf()format strings, where format specifiers are given by macros.[18][19]

A more complex example usesstringification of integers (by the preprocessor) to define a macro that expands to a sequence of string literals, which are then concatenated to a single string literal with the file name and line number:[20]

#define STRINGIFY(x) #x#define TOSTRING(x) STRINGIFY(x)#define AT __FILE__ ":" TOSTRING(__LINE__)

Beyond syntactic requirements of C/C++, implicit concatenation is a form ofsyntactic sugar, making it simpler to split string literals across several lines, avoiding the need for line continuation (via backslashes) and allowing one to add comments to parts of strings. For example, in Python, one can comment aregular expression in this way:[21]

importrefromreimportPatternpattern:Pattern=re.compile("[A-Za-z_]"# letter or underscore"[A-Za-z0-9_]*"# letter, digit or underscore)

Problems

[edit]

Implicit string concatenation is not required by modern compilers, which implement constant folding, and causes hard-to-spot errors due to unintentional concatenation from omitting a comma, particularly in vertical lists of strings, as in:

l:list[str]=["foo","bar""zork"]

Accordingly, it is not used in most languages, and it has been proposed for deprecation from D[22] and Python.[13] However, removing the feature breaks backwards compatibility, and replacing it with a concatenation operator introduces issues of precedence – string literal concatenation occurs during lexing, prior to operator evaluation, but concatenation via an explicit operator occurs at the same time as other operators, hence precedence is an issue, potentially requiring parentheses to ensure desired evaluation order.

A subtler issue is that in C and C++,[23] there are different types of string literals, and concatenation of these has implementation-defined behavior, which poses a potential security risk.[24]

Different kinds of strings

[edit]

Some languages provide more than one kind of literal, which have different behavior. This is particularly used to indicateraw strings (no escaping), or to disable or enable variable interpolation, but has other uses, such as distinguishing character sets. Most often this is done by changing the quoting character or adding a prefix or suffix. This is comparable to prefixes and suffixes tointeger literals, such as to indicate hexadecimal numbers or long integers.

One of the oldest examples is in shell scripts, where single quotes indicate a raw string or "literal string", while double quotes have escape sequences and variable interpolation.

For example, inPython, raw strings are preceded by anr orR – compare'C:\\Windows' withr'C:\Windows' (though, a Python raw string cannot end in an odd number of backslashes). Python 2 also distinguishes two types of strings: 8-bit ASCII ("bytes") strings (the default), explicitly indicated with ab orB prefix, and Unicode strings, indicated with au orU prefix.[25] while in Python 3 strings are Unicode by default and bytes are a separatebytes type that when initialized with quotes must be prefixed with ab.

C#'s notation for raw strings is called @-quoting.

@"C:\Foo\Bar\Baz\"

While this disables escaping, it allows double-up quotes, which allow one to represent quotes within the string:

@"I said, ""Hello there."""

C++11 allows raw strings, unicode strings (UTF-8, UTF-16, and UTF-32), and wide character strings, determined by prefixes. It also adds literals for the existing C++string, which is generally preferred to the existing C-style strings.

In Tcl, brace-delimited strings are literal, while quote-delimited strings have escaping and interpolation.

Perl has a wide variety of strings, which are more formally considered operators, and are known asquote and quote-like operators. These include both a usual syntax (fixed delimiters) and a generic syntax, which allows a choice of delimiters. These include:[26]

''""``//m//qr//s///y///q{}qq{}qx{}qw{}m{}qr{}s{}{}tr{}{}y{}{}

REXX uses suffix characters to specify characters or strings using their hexadecimal or binary code. E.g.,

'20'x"0010 0000"b"00100000"b

all yield thespace character, avoiding the function callX2C(20).

String interpolation

[edit]
Main article:String interpolation

In some languages, string literals may contain placeholders referring to variables or expressions in the currentcontext, which are evaluated (usually at run time). This is referred to asvariable interpolation, or more generallystring interpolation. Languages that support interpolation generally distinguish strings literals that are interpolated from ones that are not. For example, insh-compatible Unix shells (as well as Perl and Ruby), double-quoted (quotation-delimited, ") strings are interpolated, while single-quoted (apostrophe-delimited, ') strings are not. Non-interpolated string literals are sometimes referred to as "raw strings", but this is distinct from "raw string" in the sense of escaping. For example, in Python, a string prefixed withr orR is called raw string and has no escaping or interpolation,[27] a normal string (no prefix) has escaping but no interpolation,[28] and a string prefixed withf orF is called f-string[29] and has escaping[30] and interpolation.[31]

For example, the followingPerl code:

$name="Nancy";$greeting="Hello World";print"$name said $greeting to the crowd of people.";

produces the output:

Nancy said Hello World to the crowd of people.

In this case, themetacharacter character ($) (not to be confused with thesigil in the variable assignment statement) is interpreted to indicate variable interpolation, and requires some escaping if it needs to be outputted literally.

This should be contrasted with theprintf function, which produces the same output using notation such as:

printf"%s said %s to the crowd of people.",$name,$greeting;

but does not perform interpolation: the%s is a placeholder in aprintf format string, but the variables themselves are outside the string.

This is contrasted with "raw" strings:

print'$name said $greeting to the crowd of people.';

which produce output like:

$name said $greeting to the crowd of people.

Here the $ characters are not metacharacters, and are not interpreted to have any meaning other than plain text.

Embedding source code in string literals

[edit]

Languages that lack flexibility in specifying string literals make it particularly cumbersome to write programming code that generates other programming code. This is particularly true when the generation language is the same or similar to the output language.

For example:

  • writing code to producequines
  • generating an output language from within aweb template;
  • usingXSLT to generate XSLT, orSQL to generate more SQL
  • generating aPostScript representation of a document for printing purposes, from within a document-processing application written inC or some other language.

Nevertheless, some languages are particularly well-adapted to produce this sort of self-similar output, especially those that support multiple options for avoiding delimiter collision.

Using string literals as code that generates other code may have adverse security implications, especially if the output is based at least partially on untrusted user input. This is particularly acute in the case of Web-based applications, where malicious users can take advantage of such weaknesses to subvert the operation of the application, for example by mounting anSQL injection attack.

See also

[edit]

Notes

[edit]
  1. ^"Mixed-together" scope can be thought of as aVenn Diagram's parts that stick out (i.e., parts that aren't shared). Hierarchical scope can be thought of as anesting doll or a set ofconcentric circles.
  2. ^i.e., Order-of-Operations rules, similar toPEMDAS, but specifically made for programming instead of general math, like how^ sometimes represents bitwise XOR or StartOfString_RegEx (depending on context) in programming but representsAND orExponentPower (again, context-dependent) in math.
  3. ^The regex given here is not itself quoted or escaped, to reduce confusion.
  4. ^abSince this escape sequence represents a specificcode unit instead of a specific character, what code point (if any) it represents depends on the encoding of the string literal it is found in.

References

[edit]
  1. ^"ANSI C grammar (Lex)".liu.se. Retrieved22 June 2016.
  2. ^ab"Appendix B. Characters, strings, and escaping rules".realworldhaskell.org. Retrieved22 June 2016.
  3. ^ab"String".mozilla.org. Retrieved22 June 2016.
  4. ^abcdefghijklm"Escape Sequences (C)".microsoft.com. Retrieved22 June 2016.
  5. ^ab"Rationale for International Standard - Programming Languages - C"(PDF). 5.10. April 2003. pp. 52,153–154, 159.Archived(PDF) from the original on 2016-06-06. Retrieved2010-10-17.
  6. ^"6.35 The Character <ESC> in Constants",GCC 4.8.2 Manual, retrieved2014-03-08
  7. ^C11 draft standard,WG14 N1570 Committee Draft — April 12, 2011, 5.1.1.2 Translation phases, p. 11: "6. Adjacent string literal tokens are concatenated."
  8. ^C syntax: String literal concatenation
  9. ^C++11 draft standard,"Working Draft, Standard for Programming Language C++"(PDF)., 2.2 Phases of translation [lex.phases], p. 17: "6. Adjacent string literal tokens are concatenated." and 2.14.5 String literals [lex.string], note 13, p. 28–29: "In translation phase 6 (2.2), adjacent string literals are concatenated."
  10. ^D Programming Language,Lexical Analysis, "String Literals": "Adjacent strings are concatenated with the ~ operator, or by simple juxtaposition:"
  11. ^ruby: The Ruby Programming Language, Ruby Programming Language, 2017-10-19, retrieved2017-10-19
  12. ^The Python Language Reference, 2. Lexical analysis,2.4.2. String literal concatenation: "Multiple adjacent string literals (delimited by whitespace), possibly using different quoting conventions, are allowed, and their meaning is the same as their concatenation."
  13. ^abcPython-ideas, "Implicit string literal concatenation considered harmful?", Guido van Rossum, May 10, 2013
  14. ^The Python Language Reference, 2. Lexical analysis,2.4.2. String literal concatenation: "Note that this feature is defined at the syntactical level, but implemented at compile time. The ‘+’ operator must be used to concatenate string expressions at run time."
  15. ^"Strings (The Java™ Tutorials > Learning the Java Language > Numbers and Strings)".Docs.oracle.com. 2012-02-28. Retrieved2016-06-22.
  16. ^Rationale for the ANSI C Programming Language. Silicon Press. 1990. p. 31.ISBN 0-929306-07-4.,3.1.4 String literals: "A long string can be continued across multiple lines by using the backslash-newline line continuation, but this practice requires that the continuation of the string start in the first position of the next line. To permit more flexible layout, and to solve some preprocessing problems (see §3.8.3), the Committee introduced string literal concatenation. Two string literals in a row are pasted together (with no null character in the middle) to make one combined string literal. This addition to the C language allows a programmer to extend a string literal beyond the end of a physical line without having to use the backslash-newline mechanism and thereby destroying the indentation scheme of the program. An explicit concatenation operator was not introduced because the concatenation is a lexical construct rather than a run-time operation."
  17. ^Rationale for the ANSI C Programming Language. Silicon Press. 1990. p. 6566.ISBN 0-929306-07-4.,3.8.3.2 The # operator: "The # operator has been introduced for stringizing. It may only be used in a #define expansion. It causes the formal parameter name following to be replaced by a string literal formed by stringizing the actual argument token sequence. In conjunction with string literal concatenation (see §3.1.4), use of this operator permits the construction of strings as effectively as by identifier replacement within a string. An example in the Standard illustrates this feature."
  18. ^C/C++ Users Journal, Volume 19,p. 50
  19. ^"python - Why allow concatenation of string literals?". Stack Overflow. Retrieved2016-06-22.
  20. ^"LINE__ to string (stringify) using preprocessor directives".Decompile.com. 2006-10-12. Retrieved2016-06-22.
  21. ^The Python Language Reference, 2. Lexical analysis,2.4.2. String literal concatenation: "This feature can be used to reduce the number of backslashes needed, to split long strings conveniently across long lines, or even to add comments to parts of strings, for example:
  22. ^DLang's Issue Tracking System –Issue 3827 - Warn against and then deprecate implicit concatenation of adjacent string literals
  23. ^C++11 draft standard,"Working Draft, Standard for Programming Language C++"(PDF)., 2.14.5 String literals [lex.string], note 13, p. 28–29: "Any other concatenations are conditionally supported with implementation-defined behavior."
  24. ^"STR10-C. Do not concatenate different type of string literals - Secure Coding - CERT Secure Coding Standards". Archived fromthe original on July 14, 2014. RetrievedJuly 3, 2014.
  25. ^"2. Lexical analysis — Python 2.7.12rc1 documentation".python.org. Retrieved22 June 2016.
  26. ^"perlop - perldoc.perl.org".perl.org. Retrieved22 June 2016.
  27. ^"2. Lexical analysis".The Python Language Reference. Python Software Foundation. 2.4.1. String and Bytes literals.Both string and bytes literals may optionally be prefixed with a letter'r' or'R'; such constructs are calledraw string literals andraw bytes literals respectively and treat backslashes as literal characters. The term "raw string" is used in other sections in this source.
  28. ^"2. Lexical analysis".The Python Language Reference. Python Software Foundation. 2.4.1.1. Escape sequences. Escape sequences in string and bytes literals with no'r' or'R' prefix are interpreted according to rules similar to those used by Standard C. Escape sequences are decoded in "ordinary strings" as can be stated from section 2.4.3. f-strings.
  29. ^"2. Lexical analysis".The Python Language Reference. Python Software Foundation. 2.4.3. f-strings.Aformatted string literal orf-string is a string literal that is prefixed with'f' or'F'.
  30. ^"2. Lexical analysis".The Python Language Reference. Python Software Foundation. 2.4.3. f-strings. Escape sequences in f-strings are decoded like in ordinary string literals except when a f-string literal is also marked as a raw string. The latter f-string type is called "raw formatted string", for details of it, see section 2.4.1. String and Bytes literals. Additionally note that, prior to Python 3.12, escaping backslashes were not permitted inside an f-string replacement field.
  31. ^V. Smith, Eric (1 August 2015)."PEP 498 – Literal String Interpolation".Python Enhancement Proposals. Python Software Foundation. Abstract. The PEP 498 proposes a new string formatting mechanism called literal string interpolation, and refers to the strings used in that mechanism as "f-strings".

External links

[edit]
Retrieved from "https://en.wikipedia.org/w/index.php?title=String_literal&oldid=1338611518"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2026 Movatter.jp