summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/strings/HasPrefix.md
blob: 2babe85520bfd681d95d5bf4e0a298dabbf85afc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
title: strings.HasPrefix
description: Reports whether the given string begins with the given prefix.
categories: []
keywords: []
params:
  functions_and_methods:
    aliases: [hasPrefix]
    returnType: bool
    signatures: [strings.HasPrefix STRING PREFIX]
aliases: [/functions/hasprefix,/functions/strings.hasprefix]
---

```go-html-template
{{ hasPrefix "Hugo" "Hu" }} → true
```