Fork me on Github

EXCEL去除下划线

Function RemoveUnderscore(inputString As String) As String
    ' 使用Replace函数将下划线"_"替换为空字符串""
    RemoveUnderscore = Replace(inputString, "_", "")
End Function

 

posted @ 2025-09-05 11:36  昂昂呀  阅读(5)  评论(0)    收藏  举报