Go Strings: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 47: Line 47:
Indexing operator <tt>[[Go Concepts - Operators#.5B.5D|[]]]</tt>: <tt>s[i]</tt> returns a <tt>[[Go Integers#byte|byte]]</tt> (<tt>uint8</tt>)
Indexing operator <tt>[[Go Concepts - Operators#.5B.5D|[]]]</tt>: <tt>s[i]</tt> returns a <tt>[[Go Integers#byte|byte]]</tt> (<tt>uint8</tt>)


=Conversion on a <tt>byte</tt> to <tt>string</tt>=
=Conversion of a <tt>byte</tt> to <tt>string</tt>=


https://kb.novaordis.com/index.php/Go_Integers#Conversion_on_a_byte_to_string
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
:[[Go Integers#Conversion_of_a_byte_to_string|Conversion of a <tt>byte</tt> to <tt>string</tt>]]
</blockquote>

Revision as of 01:32, 23 March 2016

External

Internal

Overview

The pre-declared String type identifier is string. String values are (possibly empty) sequences of bytes. String values are immutable.

String Literals

A string literal is a string constant obtained from concatenating a sequence of characters.

Raw String Literals

Raw string literals are sequences of characters enclosed by backquotes (backticks) `. Any other character is taken literally, back slashes have no special meaning and new lines can appear. Carriage return characters inside raw string literals are discarded. The following code:

var sl = `Example \n \t
...
"something"`
fmt.Println(sl);

will produce:

Example \n \t
...
"something"

Interpreted String Literals

Interpreted string literals are character sequences between double quotes, as in "example".

Interpreted strings allow escaping (\n or \t).

String Operators and Functions

len()

Indexing operator []: s[i] returns a byte (uint8)

Conversion of a byte to string

Conversion of a byte to string