Skip to content

Instantly share code, notes, and snippets.

@johwanghee
Created September 5, 2017 04:49
Show Gist options
  • Save johwanghee/e48b155e588378a7ba7e4af7585d1b8c to your computer and use it in GitHub Desktop.
Save johwanghee/e48b155e588378a7ba7e4af7585d1b8c to your computer and use it in GitHub Desktop.
golang substring
package main
import "fmt"
import "strings"
func main() {
path := "folder/path/filename.mp4"
fmt.Println(strings.LastIndex(path, "/"))
fmt.Println(path[:strings.LastIndex(path, "/")])
fmt.Println(path[:strings.LastIndex(path, ".")])
}
@johwanghee
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment