Golang 和 JS 的字符串截取都可以利用索引定位的方式。
Golang:
str := "abcdef"
sub := str[1: 2]
JS:
const str = ‘abcdef‘
const sub = str.substring(1, 2)
2022-09-06 12:40:33
Golang 和 JS 的字符串截取都可以利用索引定位的方式。
Golang:
str := "abcdef"
sub := str[1: 2]
JS:
const str = ‘abcdef‘
const sub = str.substring(1, 2)