“Zamień ciąg” Kod odpowiedzi

Zamień ciąg

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

Zamień ciąg

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

Wymień ciąg w 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

Odpowiedzi podobne do “Zamień ciąg”

Pytania podobne do “Zamień ciąg”

Więcej pokrewnych odpowiedzi na “Zamień ciąg” w Go

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu