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

如何在 Go 中提取分隔符號之間的子字串?

Mary-Kate Olsen
發布: 2024-11-04 13:34:01
原創
776 人瀏覽過

How to Extract a Substring Between Delimiters in Go?

在Go 中提取分隔符之間的字串

在Go 中,你可能會遇到需要從較大字串中提取特定子字串的情況,基於已知的分隔符號或特定字元。

考慮以下字串:

<h1>Hello World!</h1>
登入後複製

提取「Hello World!」使用Go 從此字串中,您可以採用以下技術:

package main

import (
    "fmt"
    "strings"
)

func main() {
    str := "&lt;h1&gt;Hello World!&lt;/h1&gt;"

    // Find the index of the starting delimiter
    startIndex := strings.Index(str, "<h1>")

    // If the delimiter is not found, return an empty string
    if startIndex == -1 {
        fmt.Println("No starting delimiter found")
        return
    }

    // Adjust the starting index to omit the delimiter
    startIndex += len("<h1>")

    // Find the index of the ending delimiter
    endIndex := strings.Index(str, "</h1>")

    // If the delimiter is not found, return an empty string
    if endIndex == -1 {
        fmt.Println("No ending delimiter found")
        return
    }

    // Extract the substring between the delimiters
    result := str[startIndex:endIndex]

    // Print the extracted string
    fmt.Println(result)
}
登入後複製

此程式碼尋找輸入字串中開始和結束分隔符號的索引。然後,它調整起始索引以考慮分隔符號並提取分隔符號之間的子字串。然後將提取的子字串列印到控制台。

一般情況下,您可以修改程式碼中提供的分隔符號字串,以從任何字串中提取特定的子字串。

以上是如何在 Go 中提取分隔符號之間的子字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!