代码拉取完成,页面将自动刷新
// Copyright 2020 Douyu
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package xstring
import (
"encoding/binary"
"encoding/hex"
"fmt"
"net"
"strconv"
"strings"
)
// Addr2Hex converts address string to hex string, only support ipv4.
func Addr2Hex(str string) (string, error) {
ipStr, portStr, err := net.SplitHostPort(str)
if err != nil {
return "", err
}
ip := net.ParseIP(ipStr).To4()
port, err := strconv.Atoi(portStr)
if err != nil {
return "", nil
}
buf := make([]byte, 2)
binary.BigEndian.PutUint16(buf, uint16(port))
ip = append(ip, buf...)
return hex.EncodeToString(ip), nil
}
// Hex2Addr converts hex string to address.
func Hex2Addr(str string) (string, error) {
buf, err := hex.DecodeString(str)
if err != nil {
return "", err
}
if len(buf) < 4 {
return "", fmt.Errorf("bad hex string length")
}
return fmt.Sprintf("%s:%d", net.IP(buf[:4]).String(), binary.BigEndian.Uint16(buf[4:])), nil
}
// Strings ...
type Strings []string
// KickEmpty kick empty elements from ss
func KickEmpty(ss []string) Strings {
var ret = make([]string, 0)
for _, str := range ss {
if str != "" {
ret = append(ret, str)
}
}
return Strings(ret)
}
// AnyBlank return true if ss has empty element
func AnyBlank(ss []string) bool {
for _, str := range ss {
if str == "" {
return true
}
}
return false
}
// HeadT ...
func (ss Strings) HeadT() (string, Strings) {
if len(ss) > 0 {
return ss[0], Strings(ss[1:])
}
return "", Strings{}
}
// Head ...
func (ss Strings) Head() string {
if len(ss) > 0 {
return ss[0]
}
return ""
}
// Head2 ...
func (ss Strings) Head2() (h0, h1 string) {
if len(ss) > 0 {
h0 = ss[0]
}
if len(ss) > 1 {
h1 = ss[1]
}
return
}
// Head3 ...
func (ss Strings) Head3() (h0, h1, h2 string) {
if len(ss) > 0 {
h0 = ss[0]
}
if len(ss) > 1 {
h1 = ss[1]
}
if len(ss) > 2 {
h2 = ss[2]
}
return
}
// Head4 ...
func (ss Strings) Head4() (h0, h1, h2, h3 string) {
if len(ss) > 0 {
h0 = ss[0]
}
if len(ss) > 1 {
h1 = ss[1]
}
if len(ss) > 2 {
h2 = ss[2]
}
if len(ss) > 3 {
h3 = ss[3]
}
return
}
// Split ...
func Split(raw string, sep string) Strings {
return Strings(strings.Split(raw, sep))
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。