gpt4 book ai didi

vba - 从路径中提取文件名

转载 作者:行者123 更新时间:2023-12-04 00:04:53 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to extract file name from path?

(16 个回答)


5 个月前关闭。




我需要从路径(字符串)中提取文件名:

例如,
"C:\folder\folder\folder\file.txt"= "文件" (甚至“file.txt”让我开始)

基本上所有之前和包括最后一个\

我听说过使用通配符代替 Regex(因为它在 VBA 中是一个奇怪的实现?)但找不到任何可靠的东西。

提前加油。

最佳答案

我相信这有效,使用 VBA:

Dim strPath As String
strPath = "C:\folder\folder\folder\file.txt"

Dim strFile As String
strFile = Right(strPath, Len(strPath) - InStrRev(strPath, "\"))
InStrRev从末尾查找“\”的第一个实例,并返回位置。 Right从给定长度的右侧开始创建一个子字符串,因此您可以使用 Len - InStrRev 计算所需的长度

关于vba - 从路径中提取文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5932909/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com