mirror of
https://github.com/HChaZZY/alist.git
synced 2025-12-06 11:03:49 +08:00
14 lines
169 B
Go
14 lines
169 B
Go
package test
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestSplit(t *testing.T) {
|
|
drive_id := "/123/456"
|
|
strs := strings.Split(drive_id, "/")
|
|
fmt.Println(strs)
|
|
}
|