在 Go 中提取分隔符之间的字符串
在 Go 中,你可能会遇到需要从较大字符串中提取特定子字符串的情况,基于已知的分隔符或特定字符。
考虑以下字符串:
<h1>Hello World!</h1>
提取“Hello World!”使用 Go 从此字符串中,您可以采用以下技术:
package main
import (
"fmt"
"strings"
)
func main() {
str := "<h1>Hello World!</h1>"
// 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中文网其他相关文章!