gpt4 book ai didi

excel - VBA,修剪路径的一部分

转载 作者:行者123 更新时间:2023-12-03 00:23:45 28 4
gpt4 key购买 nike

假设我有一个路径:stack/overflow/question/help/please。最终结果是:帮助/请。

有谁有代码可以说明我想要解析多少个“/”。

它类似于文本到列,但我想将其保留在一个单元格中。

谢谢

最佳答案

你可以编写一个像这样的函数:

Function RightPart(s As String, d As String, n As Long) As String
Dim A As Variant
Dim i As Long, ub As Long
Dim t As String

A = Split(s, d)
ub = UBound(A)
If n >= ub Then
RightPart = s
Exit Function
End If
For i = ub - n + 1 To ub
t = t & A(i) & IIf(i < ub, d, "")
Next i
RightPart = t
End Function

然后 RightPart(":stack/overflow/question/help/please","/",2) 计算结果为 "help/please"

关于excel - VBA,修剪路径的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35805927/

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