Go Package strings: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 10: Line 10:
* <code>[[Go_Strings#String_Comparison_with_Compare.28.29|Compare()]]</code>
* <code>[[Go_Strings#String_Comparison_with_Compare.28.29|Compare()]]</code>
* <code>[[Go_Strings#Contains.28.29|Contains()]]</code>
* <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>


=TO DISTRIBUTE=
=TO DISTRIBUTE=
* <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>


NewReader()
NewReader()


* <tt>[https://golang.org/pkg/strings/#NewReader NewReader]</tt>
* <tt>[https://golang.org/pkg/strings/#NewReader NewReader]</tt>
</font>

Revision as of 04:12, 22 August 2023

External

Internal

Overview

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

Functions

TO DISTRIBUTE

NewReader()