gpt4 book ai didi

string - VBA - 使用 startPOS 和 endPOS 拆分字符串函数

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

我需要 Excel VBA 中的一个函数,该函数将使用 START_POSITION 和 END_POSITION 拆分字符串。

喜欢:

function splitxy(text as String, start_pos as Integer, end_pos as Integer) as String

我是否需要将字符串转换为数组并使用循环来获取所需的字符,还是有更简单的方法?

最佳答案

根据要求评论作为答案:

Function splitxy(Text As String, StartPos As Integer, _
EndPos As Integer) As String

splitxy = Mid(Text, StartPos, EndPos - StartPos + 1)

End Function

关于string - VBA - 使用 startPOS 和 endPOS 拆分字符串函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8377297/

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