func Base(path string) string
获取以/为分隔符的路径中的最后一个元素。
/
package main import ( "fmt" "path" ) func main() { fmt.Println(path.Base("https://go.dev/src/reflect/type.go")) //type.go }
使用go命令编译并运行:
go run test.go