gpt4 book ai didi

regex - 在 Excel 中拆分大写单词

转载 作者:行者123 更新时间:2023-12-01 17:18:32 24 4
gpt4 key购买 nike

我想将单元格中的所有单词按大写字母拆分,例如:

原始值:

MikeJones
RinaJonesJunior
MichealSamuelsLurth

预期输出:

Mike Jones
Rina Jones Junior
Micheal Samuels Lurth

不使用 VBA 可以完成此操作吗?

最佳答案

承认 Excelll 非凡的公式后,最有效的代码解决方案将是基于 RegExp 的。这可以避免长循环。

enter image description here

Function SplitCaps(strIn As String) As String
Dim objRegex As Object
Set objRegex = CreateObject("vbscript.regexp")
With objRegex
.Global = True
.Pattern = "([a-z])([A-Z])"
SplitCaps = .Replace(strIn, "$1 $2")
End With
End Function

关于regex - 在 Excel 中拆分大写单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10190269/

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