Go Package strings: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
Line 8: Line 8:
The <code>strings</code> package contains functions to manipulate UTF-8-encoded strings.
The <code>strings</code> package contains functions to manipulate UTF-8-encoded strings.
=Functions=
=Functions=
* <code>[[Go_Strings#String_Comparison_with_Compare.28.29|Compare()]]</code>
{{Internal|Go_Strings#The_strings_Package|Go Strings &#124; The <tt>strings</tt> Package}}
* <code>[[Go_Strings#Contains.28.29|Contains()]]</code>
* <code>[[Go_Strings#HasPrefix.28.29|HasPrefix()]]</code>
* <code>[[Go_Strings#HasSuffix.28.29|HasSuffix()]]</code>
* <code>[[Go_Strings#Index.28.29|Index()]]</code>
* <code>[[Go_Strings#Count.28.29|Count()]]</code>
* <code>[[Go_Strings#Join.28.29|Join()]]</code>
* <code>[[Go_Strings#Split.28.29|Split()]]</code>
* <code>[[Go_Strings#Replace.28.29|Replace()]]</code>
* <code>[[Go_Strings#ToLower.28.29|ToLower()]]</code>
* <code>[[Go_Strings#ToUpper.28.29|ToUpper()]]</code>
* <code>[[Go_Strings#TrimSpace.28.29|TrimSpace()]]</code>
* <code>[[Go_Strings#Trim.28.29|Trim()]]</code>


=TO DISTRIBUTE=
=TO DISTRIBUTE=

Latest revision as of 21:05, 28 August 2023

External

Internal

Overview

The strings package contains functions to manipulate UTF-8-encoded strings.

Functions

Go Strings | The strings Package

TO DISTRIBUTE

NewReader()