Created a page for the New Line nodes. Yes this is the one case where 2 nodes share the same page here, strangely enough. |
cleanup |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 17: | Line 17: | ||
|}} | |}} | ||
The <code>New Line</code> node is a character literal constant that represents | The <code>New Line</code> node is a character literal constant that represents a new line in text. Note that this node comes in two versions: A [[Type:char|char]] version and a [[Type:String|String]] version. | ||
== Outputs == | == Outputs == | ||
=== * ([[Type:char|char]] or [[String]]) === | === * ([[Type:char|char]] or [[Type:String|String]]) === | ||
The character literal constant of the New Line character. | The character literal constant of the New Line character. | ||
For the char node, this will output <code>U+000A</code>, or a line feed character (<code>\n</code>). | |||
For the string node, the output will be a Carriage Return (<code>U+000D</code>, <code>\r</code>) followed by a line feed (<code>\r\n</code>) on Windows (and other non-Unix) platforms, or a singular line feed (<code>\n</code>) on Unix platforms (Linux, MacOS, ...). This is local to each user. | |||
== See Also == | == See Also == | ||
* [https://learn.microsoft.com/en-us/dotnet/api/system.environment.newline Microsoft documentation for <code>Environment.NewLine</code>] | |||
* [https://en.wikipedia.org/wiki/Newline Wikipedia article about the New Line.] | |||
[[Category:ProtoFlux:Strings:Constants]] | [[Category:ProtoFlux:Strings:Constants]] |
Latest revision as of 19:15, 20 May 2024
New Line
Constants
New Line
Constants
The New Line
node is a character literal constant that represents a new line in text. Note that this node comes in two versions: A char version and a String version.
Outputs
* (char or String)
The character literal constant of the New Line character.
For the char node, this will output U+000A
, or a line feed character (\n
).
For the string node, the output will be a Carriage Return (U+000D
, \r
) followed by a line feed (\r\n
) on Windows (and other non-Unix) platforms, or a singular line feed (\n
) on Unix platforms (Linux, MacOS, ...). This is local to each user.