gpt4 book ai didi

excel - 替换字符串变量中的多个字符 (VBA)

转载 作者:行者123 更新时间:2023-12-02 07:30:06 30 4
gpt4 key购买 nike

如何替换字符串变量中的多个内容?

这是我在 VBA 中的示例函数:

Private Function ExampleFunc(ByVal unitNr$) As String
If InStr(unitNr, "OE") > 0 Then
unitNr = Replace(unitNr, "OE", "")
unitNr = Replace(unitNr, ";", "")
End If
...
End Function

有更好的解决方案吗?

最佳答案

您可以使用数组并循环遍历其元素:

Sub MAIN()
Dim s As String

s = "123456qwerty"
junk = Array("q", "w", "e", "r", "t", "y")

For Each a In junk
s = Replace(s, a, "")
Next a

MsgBox s
End Sub

垃圾的每个元素可以是子字符串或单个字符。

关于excel - 替换字符串变量中的多个字符 (VBA),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36983532/

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