📜  Golang 中的 filepath.Ext()函数示例

📅  最后修改于: 2021-10-25 02:06:45             🧑  作者: Mango

在 Go 语言中, path包用于以斜杠分隔的路径,例如 URL 中的路径。 Go 语言中的filepath.Ext()函数用于返回指定路径使用的文件扩展名。扩展名是从路径最后一个元素的最后一个点开始的后缀;如果没有点,则为空。而且这个函数是在path包下定义的。在这里,您需要导入“path/filepath”包才能使用这些功能。

句法:

func Ext(path string) string

这里,’path’ 是指定的路径。

返回值:返回指定路径使用的文件扩展名。

示例 1:

// Golang program to illustrate the usage of
// filepath.Ext() function
  
// Including the main package
package main
  
// Importing fmt and path/filepath
import (
    "fmt"
    "path/filepath"
)
  
// Calling main
func main() {
  
    // Calling the Ext() function
    fmt.Println(filepath.Ext("gfg.org"))
    fmt.Println(filepath.Ext("GeeksforGeeks."))
    fmt.Println(filepath.Ext(".org"))
      
}

输出:

.org
.
.org

示例 2:

// Golang program to illustrate the usage of
// filepath.Ext() function
  
// Including the main package
package main
  
// Importing fmt and path/filepath
import (
    "fmt"
    "path/filepath"
)
  
// Calling main
func main() {
  
    // Calling the Ext() function
    fmt.Println(filepath.Ext("a.b"))
    fmt.Println(filepath.Ext("gfg"))
    fmt.Println(filepath.Ext("ide.gfg.org"))
    fmt.Println(filepath.Ext(".ab.cd"))
      
}

输出:

.b

.org
.cd