nxld

方法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)表示提取中文

分类:

技术点:

相关文章:

  • 2021-12-19
  • 2021-08-11
  • 2022-12-23
  • 2022-12-23
  • 2022-01-18
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-01
  • 2022-01-01
  • 2021-06-18
  • 2021-11-05
  • 2022-01-13
  • 2021-05-02
相关资源
相似解决方案