“Vá substituir a string” Respostas de código

Vá substituir a string

fmt.Println(strings.ReplaceAll("hello wordl", "l", "L"))
fmt.Println(strings.Replace("hello wordl", "l", "L", 3))
Restu Wahyu Saputra

Vá substituir a string

fmt.Println(strings.ReplaceAll("hello wordl", "l", "L"))
fmt.Println(strings.Replace("hello wordl", "l", "L", 3))
Restu Wahyu Saputra

Substitua uma string em Go

// Program using Replace() to replace strings

package main
import (
  "fmt"
  "strings"
)

func main() {
    
  text := "car"
  fmt.Println("Old String:", text)
  
  // replace r with t
  replacedText := strings.Replace(text, "r", "t", 1)
  fmt.Println("New String:", replacedText)
}
SAMER SAEID

Respostas semelhantes a “Vá substituir a string”

Perguntas semelhantes a “Vá substituir a string”

Mais respostas relacionadas para “Vá substituir a string” em Go

Procure respostas de código populares por idioma

Procurar outros idiomas de código