Go Package strings: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(25 intermediate revisions by the same user not shown)
Line 1: Line 1:
=External=
=External=
* https://pkg.go.dev/strings


* https://golang.org/pkg/strings/
=Internal=
* [[Go_Language_Modularization#strings|Standard library]]


=Internal=
=Overview=
The <code>strings</code> package contains functions to manipulate UTF-8-encoded strings.
=Functions=
{{Internal|Go_Strings#The_strings_Package|Go Strings &#124; The <tt>strings</tt> Package}}
 
=TO DISTRIBUTE=


* [[Go Concepts - Standard Library#Packages|Standard Library]]
* [[Go_Strings|<tt>string</tt>]]


=Functions=
NewReader()


* <tt>[https://golang.org/pkg/strings/#Contains Contains]</tt>
* <tt>[https://golang.org/pkg/strings/#NewReader NewReader]</tt>
* <tt>[https://golang.org/pkg/strings/#Count Count]</tt>
* <tt>[https://golang.org/pkg/strings/#HasPrefix HasPrefix]</tt>
* <tt>[https://golang.org/pkg/strings/#HasSuffix HasSuffix]</tt>
* <tt>[https://golang.org/pkg/strings/#Index Index]</tt>
* <tt>[https://golang.org/pkg/strings/#Join Join]</tt>
* <tt>[https://golang.org/pkg/strings/#Split Split]</tt>
* <tt>[https://golang.org/pkg/strings/#Replace Replace]</tt>
* <tt>[https://golang.org/pkg/strings/#ToLower ToLower]</tt>
* <tt>[https://golang.org/pkg/strings/#ToUpper ToUpper]</tt>

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()