Golang String Manipulation instances

Source: Internet
Author: User
This is a creation in Article, where the information may have evolved or changed.
Package main import S "strings" import "FMT" var p = fmt. PRINTLN Func Main () {    p ("Contains:", S.contains ("test", "es")//Whether it contains true    p ("Count:", S.count ("test", "T"))//Word The number of characters that appear in the string 2    p ("Hasprefix:", S.hasprefix ("Test", "TE"))//Determine the strings header true    p ("Hassuffix:", S.hassuffix ("Test", "St "))//To determine the end of the string true    p (" Index: ", S.index (" Test "," E "))//query string position 1    p (" Join: ", S.join ([]string{" A "," B "},"-"))//Word  String array connected to a-B    p ("Repeat:", S.repeat ("a", 5))//Repeats a string aaaaa    p ("Replace:", S.replace ("foo", "O", "0",-1))//strings substitution Specifies that the starting position is less than 0, then replace all f00    p ("Replace:", S.replace ("foo", "O", "0", 1))//String substitution to specify the starting position 1 f0o    p ("Split:", S.split ("a-b- C-d-e ","-"))//String cut [a b c d e]    p (" ToLower: ", S.tolower (" test "))//String lowercase conversion TEST    p (" ToUpper: ", S.toupper (" Te St "))//String uppercase conversion TEST    p (" Len: ", Len (" Hello "))//String length    p (" Char: "," Hello "[1])//The character in the string, type Byte}

  

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.