How to extract filename from given path with regular expression in Go

1 Answer

0 votes
package main

import (
	"fmt"
	"regexp"
)

func main() {
	re := regexp.MustCompile(`^(.*/)?(?:$|(.+?)(?:(\.[^.]*$)|$))`)

	s := `https://www.collectivesolver.com/question.html`
	match := re.FindStringSubmatch(s)
	fmt.Println(match[2])

	s = `/home/public_html/files/abc.png`
	match = re.FindStringSubmatch(s)
	fmt.Println(match[2])
}
  
  
  
/*
run:
  
question
abc
  
*/

 



answered Aug 14, 2020 by avibootz

Related questions

...