之间网

excel数字和文字分开3段(excel数字和文字分开)

信息互动
导读 今天之间网归一为大家解答以上的问题。excel数字和文字分开3段,excel数字和文字分开相信很多小伙伴还不知道,现在让我们一起来看看吧!1、...

今天之间网归一为大家解答以上的问题。excel数字和文字分开3段,excel数字和文字分开相信很多小伙伴还不知道,现在让我们一起来看看吧!

1、自定义一个函数来实现提取字符串中汉字、英文与数字的函数语法:myget(srg,n,start_num ) =myget(srg,1,3) ’从第3位开始取出中文字符 =myget(srg,2) ’从第1位开始取出英文字母,第3个参数省略默认为1 =myget(srg,,5) ’从第5位开始取出数字,第2个参数省略默认为0 =myget(srg) ’第2、3个参数都省略。

2、默认为从第1位取出所有数字 Function MyGet(Srg As String, Optional n As Integer = False, Optional start_num As Integer = 1) Dim i As Integer Dim s, MyString As String Dim Bol As Boolean For i = start_num To Len(Srg) s = Mid(Srg, i, 1) If n = 1 Then Bol = Asc(s) < 0 ElseIf n = 2 Then Bol = s Like "[a-z,A-Z]" ElseIf n = 0 Then Bol = s Like "[0-9,.]" End If If Bol Then MyString = MyString & s Next MyGet = IIf(n = 1 Or n = 2, MyString, Val(MyString)) End Function。

本文就为大家分享到这里,希望大家看了会喜欢。

标签: