You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
299 B
12 lines
299 B
5 years ago
|
// stringutil 包含有用于处理字符串的工具函数。
|
||
|
package tools
|
||
|
|
||
|
// Reverse 将其实参字符串以符文为单位左右反转。
|
||
|
func Reverse(s string) string {
|
||
|
r := []rune(s)
|
||
|
for i, j := 0, len(r)-1; i < len(r)/2; i, j = i+1, j-1 {
|
||
|
r[i], r[j] = r[j], r[i]
|
||
|
}
|
||
|
return string(r)
|
||
|
}
|