Fork me on Github
摘要: Function RemoveUnderscore(inputString As String) As String ' 使用Replace函数将下划线"_"替换为空字符串"" RemoveUnderscore = Replace(inputString, "_", "") End Function 阅读全文
posted @ 2025-09-05 11:36 昂昂呀 阅读(6) 评论(0) 推荐(0)