1. ホーム
  2. string

[解決済み] Goにはstartswith,endswith関数がない?

2022-04-23 06:24:15

質問

プログラミング言語 Go の標準ライブラリには、なぜ startswith や endswith などの標準関数が含まれていないのでしょうか?

解決方法は?

その 文字列 パッケージには HasPrefix ハスサフィックス .

import "strings"

startsWith := strings.HasPrefix("prefix", "pre") // true
endsWith := strings.HasSuffix("suffix", "fix") // true

プレイ.golang.org