2020-12-28 10:23:54 +08:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSplit(t *testing.T) {
|
2021-03-05 21:25:44 +08:00
|
|
|
drive_id := "/123/456"
|
|
|
|
strs := strings.Split(drive_id, "/")
|
2020-12-28 10:23:54 +08:00
|
|
|
fmt.Println(strs)
|
2021-03-05 21:25:44 +08:00
|
|
|
}
|