首页 > 后端开发 > Golang > 正文

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

Mary-Kate Olsen
发布: 2024-11-04 13:34:01
原创
774 人浏览过

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学习者快速成长!