首頁 > 後端開發 > Golang > 主體

如何找到 Go 字串中某個字元的索引?

Patricia Arquette
發布: 2024-11-11 12:44:03
原創
714 人瀏覽過

How to Find the Index of a Character in a Go String?

在Go with Strings 套件中尋找字元索引

您可以使用Index 函數從字串中擷取字串中字元的索引

用法範例:

package main

import (
    "fmt"
    "strings"
)

func main() {
    str := "chars@arefun"
    char := "@"

    // Find the index of the character using strings.Index
    index := strings.Index(str, char)

    if index != -1 {
        // If the character was found, split the string based on the index
        chars := str[:index]
        arefun := str[index+1:]

        fmt.Println("Index:", index)
        fmt.Println("chars:", chars)
        fmt.Println("arefun:", arefun)
    } else {
        fmt.Println("Character not found")
    }
}
登入後複製

輸出:

Index: 5
chars: chars
arefun: arefun
登入後複製

以上是如何找到 Go 字串中某個字元的索引?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板