# 判断字符串开头
在这篇文章中,我们研究如何检查给定的字符串是否以某些东西开头。这通常在编程中使用,并且有不同的方法可以实现相同的目标。
** 文章转自go语言中文文档 [http://www.topgoer.com](http://www.topgoer.com/?from=studygolang "文章转自go语言中文文档http://www.topgoer.com") **
将strings包与HasPrefix功能一起使用-这可能是最简单/最好的解决方案。
```go
package main
import (
"fmt"
"strings"
)
func main() {
myString := "www.5lmh.com"
// Option 1: (Recommended)
if strings.HasPrefix(myString, "www") {
fmt.Println("Hello to you too")
} else {
fmt.Println("Goodbye")
}
}
```
更多评论
<a href="/user/chenlie" title="@chenlie">@chenlie</a> 感谢反馈。 <a href="/user/lu569368" title="@lu569368">@lu569368</a> 想推你的网站我不排斥,但请发有价值的。谢谢!
#2