码迷,mamicode.com
首页 > 其他好文 > 详细

EXCEL如何提取文字中包含的数字?

时间:2016-11-25 00:24:40      阅读:528      评论:0      收藏:0      [点我收藏+]

标签:插入   for   string   like   复制   中文   输入   字母   提取   

方法1:=IF(ISERROR(FIND("-",A1)),"","-")&MID(SUM(MID(101&A1,2+LARGE(ISNUMBER(-MID(1&A1,COLUMN(1:1),1))COLUMN(1:1),ROW($1:$50)),1)10^ROW($2:$51))%,2,15)

方法2:按ALT+F11,插入-模块,复制下列语句
Function SplitNumEng(str As String, sty As Byte)
Dim StrA As String
Dim StrB As String
Dim StrC As String
Dim i As Integer
Dim SigS As String
For i = 1 To Len(str)
SigS = Mid(str, i, 1)
If SigS Like "[a-zA-Z]" Then
StrA = StrA & SigS
ElseIf SigS Like "#" Then
StrB = StrB & SigS
Else
StrC = StrC & SigS
End If
Next i
Select Case sty
Case 1
SplitNumEng = StrA
Case 2
SplitNumEng = StrB
Case Else
SplitNumEng = StrC
End Select
End Function
比如你的数据在A1 
BI输入 =SplitNumEng(A1,1) 表示提取字母

=SplitNumEng(A1,2) 表示提取数字 
=SplitNumEng(A1,3)表示提取中文

EXCEL如何提取文字中包含的数字?

标签:插入   for   string   like   复制   中文   输入   字母   提取   

原文地址:http://www.cnblogs.com/nxld/p/6099990.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!