mattermost/server/channels/utils/urlencode.go

20 lines
329 B
Go
Raw Permalink Normal View History

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
2015-07-17 15:55:06 -04:00
package utils
import (
"net/url"
"strings"
)
func URLEncode(str string) string {
2015-07-17 15:55:06 -04:00
strs := strings.Split(str, " ")
for i, s := range strs {
strs[i] = url.QueryEscape(s)
}
return strings.Join(strs, "%20")
}