Este fórum está sendo desativado

Depois de 9 anos, este fórum será desativado. Mas calma.... estamos migrando para uma comunidade no DISCORD. Junte-se a nós.

ENTRAR PARA DISCORD

Tópicos relacionados a códigos VBA, gravação de macros, etc.
  • Avatar do usuário
Por NiltoAraujo
#22059
Olà amigos

Gostaria de uma ajudinha, tenho textbox1 e colo dados extraídos de um site e gostaria de extrair apenas os números de telefone e envia-los para um textbox2 em vba

Agradeço.
Avatar do usuário
Por alexandrevba
Avatar
#22177
Bom dia!!

Uma forma seria:
Código: Selecionar todos
Private Sub CommandButton1_Click()
    Dim lMyNewNum As Long
    Dim strTest As String
    strTest = Me.TextBox1.Text
     
    lMyNewNum = ExtractNumber(strTest)
    Me.TextBox2.Value = lMyNewNum
     
End Sub
Código: Selecionar todos
Function ExtractNumber(sText As String)
    Dim iCount As Integer, i As Integer
    Dim lNum As String
     
    For iCount = Len(sText) To 1 Step -1
        If IsNumeric(Mid(sText, iCount, 1)) Then
            i = i + 1
            lNum = Mid(sText, iCount, 1) & lNum
        End If
        If i = 1 Then lNum = CInt(Mid(lNum, 1, 1))
    Next iCount
     
    ExtractNumber = CLng(lNum)
End Function
Att
long long title how many chars? lets see 123 ok more? yes 60

We have created lots of YouTube videos just so you can achieve [...]

Another post test yes yes yes or no, maybe ni? :-/

The best flat phpBB theme around. Period. Fine craftmanship and [...]

Do you need a super MOD? Well here it is. chew on this

All you need is right here. Content tag, SEO, listing, Pizza and spaghetti [...]

Lasagna on me this time ok? I got plenty of cash

this should be fantastic. but what about links,images, bbcodes etc etc? [...]

Estamos migrando para uma comunidade no Discord