Only need IPv4 Address

tjreeddoc

New Member
Joined
Nov 2, 2016
Messages
14
I need help with a Macro. I have a column data. Each Cell in the column has an IPv4 address and an IPv6 address. I only want the IPv4 address. What is the best way to leave the IPv4 address in this column?

B1 & B2 have the original information. I need the data to look like B3 & B4.

Thank you,

T.J.

Excel 2012
AB
1NCS11.1.1.1, fe80::20c:29ff:fe21:d0da
2DC1fe80::d431:6c7a:9f1b:3fbb, 2.2.2.2
3
4NCS11.1.1.1
5DC12.2.2.2

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1
 
Cool approach! This ends up being slightly less accurate than using the Regex Pattern "(?:\d+\.){3}\d+" (Several preceding periods in the whole string would cause this to return a blank) and slightly slower (6.46 seconds vs 9.94 seconds over 1,000,000 iterations using the string "fe80::d431:6c7a:9f1b:3fbb, 2.2.2.2"). But this is definitely more suitable for a UDF, especially for most IP Address related Excel spreadsheet data. Thanks for sharing!
 
Upvote 0

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Cool approach!
Thanks!



This ends up being slightly less accurate than using the Regex Pattern "(?:\d+\.){3}\d+" (Several preceding periods in the whole string would cause this to return a blank)
I am sure this will adversely affect execution speed (maybe dramatically), but does this version improve the accuracy...
Code:
[table="width: 500"]
[tr]
	[td]Function GetIp4(S As String, Optional StartAt As Long = 1) As String
  Dim X As Long, Y As Long, Z As Long, Parts() As String
  Parts = Split(Mid(S, StartAt), ".")
  On Error GoTo SomethingWrong
  For Y = 1 To UBound(Parts) - 1
    If Not Parts(Y - 1) & "." & Parts(Y) & "." & Parts(Y + 1) & "." & Parts(Y + 2) Like "*.*[!0-9.]*.*" Then
      For X = 1 To 3
        If Len(Parts(X + Y - 1)) > 0 And Parts(X + Y - 2) Like "*[!.]#" And Not Parts(X + Y - 1) Like "*[!0-9]*" And Not Parts(X + Y) Like "*[!0-9]*" And Parts(X + Y + 1) Like "#[!.]*" Then
          For Z = Len(Parts(X + Y - 2)) - 1 To 1 Step -1
            If Mid(Parts(X + Y - 2), Z, 1) Like "[!0-9]" Then Parts(X + Y - 2) = Mid(Parts(X + Y - 2), Z + 1)
          Next
          For Z = 1 To Len(Parts(X + Y + 1))
            If Mid(Parts(X + Y + 1), Z, 1) Like "[!0-9]" Then Parts(X + Y + 1) = Left(Parts(X + Y + 1), Z - 1)
          Next
          GetIp4 = Parts(X + Y - 2) & "." & Parts(X + Y - 1) & "." & Parts(X + Y) & "." & Parts(X + Y + 1)
          Exit Function
        End If
      Next
    End If
  Next
SomethingWrong:
End Function[/td]
[/tr]
[/table]
 
Upvote 0

Forum statistics

Threads
1,215,734
Messages
6,126,542
Members
449,316
Latest member
sravya

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top