博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
golang strings包部分函数使用
阅读量:6571 次
发布时间:2019-06-24

本文共 506 字,大约阅读时间需要 1 分钟。

import (	"fmt"	"strings")func main() {	//检查字符串传是否包含指定字符,返回true或者false	fmt.Println(strings.Contains("hello go", "hello"))	//组合切片成一个字符串	fmt.Println(strings.Join([]string{"a", "1"}, ","))	//查找字符串返回索引	fmt.Println(strings.Index("hello go", "go"))	//追加字符串	fmt.Println(strings.Repeat("go", 3))	//拆分字符串为切片	fmt.Println(strings.Split("222,33", ","))	//去掉头尾指定字符	fmt.Println(strings.Trim("a w w w a a", "a"))	//去掉首位空格放入切片	fmt.Println(strings.Fields("w 1 2 3 "))}

  

转载于:https://www.cnblogs.com/lemonzwt/p/10023885.html

你可能感兴趣的文章
问题-XE8客户端访问Webservice时报“no selected dom vendor”
查看>>
day40-mysql数据备份、pymysql模块
查看>>
importerror:cannot import name 'smart_unicode'
查看>>
熟悉常用的Linux操作
查看>>
5.2 5.3 实验五 四则运算
查看>>
app的推广
查看>>
poi 导出 excel
查看>>
servlet - 乱码、重定向、cookie
查看>>
Directx教程(30) 如何保证渲染物体不会变形
查看>>
uva-10887-枚举
查看>>
uva-10718-贪心
查看>>
DDD
查看>>
用python写算法1[用两个栈实现一个队列]
查看>>
mysql-锁表机制分析(转)
查看>>
Zabbix3.0安装与部署(centos7)
查看>>
layerdate一款很好用日期插件
查看>>
Eclipse中Errors occurred during the build最简单的解决方法
查看>>
(转) 为什么选择.NETCore?
查看>>
phpexcel科学计数法
查看>>
python 简单了解namedtuple
查看>>