Rogue5099 Posted August 14, 2011 Posted August 14, 2011 (edited) I have the following in a String: TCP 127.0.0.1:49159 127.0.0.1:49158 ESTABLISHED TCP 127.0.0.1:49164 127.0.0.1:49165 ESTABLISHED TCP 127.0.0.1:49165 127.0.0.1:49164 ESTABLISHED TCP 127.0.0.1:49171 127.0.0.1:5939 ESTABLISHED TCP 127.0.0.1:49174 127.0.0.1:19872 ESTABLISHED TCP 192.168.1.14:49175 199.47.216.172:443 CLOSE_WAIT TCP 192.168.1.14:49176 199.47.217.148:80 ESTABLISHED TCP 192.168.1.14:49182 70.38.16.132:6667 ESTABLISHED TCP 192.168.1.14:49255 63.240.202.145:4000 ESTABLISHED TCP 192.168.1.14:49219 63.240.202.139:6112 ESTABLISHED TCP 192.168.1.14:49222 63.240.202.121:6112 ESTABLISHED TCP 192.168.1.14:49234 88.189.0.182:5938 ESTABLISHED TCP 192.168.1.14:49256 63.240.202.48:4000 ESTABLISHED TCP 192.168.1.14:49249 63.240.202.148:6112 TIME_WAIT TCP 192.168.1.14:49251 63.240.202.148:6112 TIME_WAIT TCP 192.168.1.14:49253 63.240.202.148:6112 TIME_WAIT TCP 192.168.1.14:49254 63.240.202.148:6112 TIME_WAIT This is always changing and but for example I need to return the 145 & 48 in (63.240.202.145:4000 & 63.240.202.48:4000). The 63.240.202. and the :4000 stays constant. Currently I'm looking at StringRegExp but not getting anywhere?!? Edited August 14, 2011 by rogue5099 My projects: Inventory / Mp3 Inventory, Computer Stats
guinness Posted August 14, 2011 Posted August 14, 2011 _StringBetween() perhaps? #include <Array.au3> #include <String.au3> Global $aArray $aArray = _StringBetween("63.240.202.145:4000", "63.240.202.", ":4000") _ArrayDisplay($aArray) UDF List: _AdapterConnections() • _AlwaysRun() • _AppMon() • _AppMonEx() • _ArrayFilter/_ArrayReduce • _BinaryBin() • _CheckMsgBox() • _CmdLineRaw() • _ContextMenu() • _ConvertLHWebColor()/_ConvertSHWebColor() • _DesktopDimensions() • _DisplayPassword() • _DotNet_Load()/_DotNet_Unload() • _Fibonacci() • _FileCompare() • _FileCompareContents() • _FileNameByHandle() • _FilePrefix/SRE() • _FindInFile() • _GetBackgroundColor()/_SetBackgroundColor() • _GetConrolID() • _GetCtrlClass() • _GetDirectoryFormat() • _GetDriveMediaType() • _GetFilename()/_GetFilenameExt() • _GetHardwareID() • _GetIP() • _GetIP_Country() • _GetOSLanguage() • _GetSavedSource() • _GetStringSize() • _GetSystemPaths() • _GetURLImage() • _GIFImage() • _GoogleWeather() • _GUICtrlCreateGroup() • _GUICtrlListBox_CreateArray() • _GUICtrlListView_CreateArray() • _GUICtrlListView_SaveCSV() • _GUICtrlListView_SaveHTML() • _GUICtrlListView_SaveTxt() • _GUICtrlListView_SaveXML() • _GUICtrlMenu_Recent() • _GUICtrlMenu_SetItemImage() • _GUICtrlTreeView_CreateArray() • _GUIDisable() • _GUIImageList_SetIconFromHandle() • _GUIRegisterMsg() • _GUISetIcon() • _Icon_Clear()/_Icon_Set() • _IdleTime() • _InetGet() • _InetGetGUI() • _InetGetProgress() • _IPDetails() • _IsFileOlder() • _IsGUID() • _IsHex() • _IsPalindrome() • _IsRegKey() • _IsStringRegExp() • _IsSystemDrive() • _IsUPX() • _IsValidType() • _IsWebColor() • _Language() • _Log() • _MicrosoftInternetConnectivity() • _MSDNDataType() • _PathFull/GetRelative/Split() • _PathSplitEx() • _PrintFromArray() • _ProgressSetMarquee() • _ReDim() • _RockPaperScissors()/_RockPaperScissorsLizardSpock() • _ScrollingCredits • _SelfDelete() • _SelfRename() • _SelfUpdate() • _SendTo() • _ShellAll() • _ShellFile() • _ShellFolder() • _SingletonHWID() • _SingletonPID() • _Startup() • _StringCompact() • _StringIsValid() • _StringRegExpMetaCharacters() • _StringReplaceWholeWord() • _StringStripChars() • _Temperature() • _TrialPeriod() • _UKToUSDate()/_USToUKDate() • _WinAPI_Create_CTL_CODE() • _WinAPI_CreateGUID() • _WMIDateStringToDate()/_DateToWMIDateString() • Au3 script parsing • AutoIt Search • AutoIt3 Portable • AutoIt3WrapperToPragma • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • DirToHTML5 • FileInstallr • FileReadLastChars() • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIEvents • GUIGetBkColor() • Int_Parse() & Int_TryParse() • IsISBN() • LockFile() • Mapping CtrlIDs • OOP in AutoIt • ParseHeadersToSciTE() • PasswordValid • PasteBin • Posts Per Day • PreExpand • Protect Globals • Queue() • Resource Update • ResourcesEx • SciTE Jump • Settings INI • SHELLHOOK • Shunting-Yard • Signature Creator • Stack() • Stopwatch() • StringAddLF()/StringStripLF() • StringEOLToCRLF() • VSCROLL • WM_COPYDATA • More Examples... Updated: 22/04/2018
guinness Posted August 14, 2011 Posted August 14, 2011 Or possibly this (but I'm not the SRE master!) MsgBox(64, "guinness Example", StringRegExpReplace("63.240.202.145:4000", "(\d*).(\d*).(\d*).(\d*):(\d*)", "$4")) UDF List: _AdapterConnections() • _AlwaysRun() • _AppMon() • _AppMonEx() • _ArrayFilter/_ArrayReduce • _BinaryBin() • _CheckMsgBox() • _CmdLineRaw() • _ContextMenu() • _ConvertLHWebColor()/_ConvertSHWebColor() • _DesktopDimensions() • _DisplayPassword() • _DotNet_Load()/_DotNet_Unload() • _Fibonacci() • _FileCompare() • _FileCompareContents() • _FileNameByHandle() • _FilePrefix/SRE() • _FindInFile() • _GetBackgroundColor()/_SetBackgroundColor() • _GetConrolID() • _GetCtrlClass() • _GetDirectoryFormat() • _GetDriveMediaType() • _GetFilename()/_GetFilenameExt() • _GetHardwareID() • _GetIP() • _GetIP_Country() • _GetOSLanguage() • _GetSavedSource() • _GetStringSize() • _GetSystemPaths() • _GetURLImage() • _GIFImage() • _GoogleWeather() • _GUICtrlCreateGroup() • _GUICtrlListBox_CreateArray() • _GUICtrlListView_CreateArray() • _GUICtrlListView_SaveCSV() • _GUICtrlListView_SaveHTML() • _GUICtrlListView_SaveTxt() • _GUICtrlListView_SaveXML() • _GUICtrlMenu_Recent() • _GUICtrlMenu_SetItemImage() • _GUICtrlTreeView_CreateArray() • _GUIDisable() • _GUIImageList_SetIconFromHandle() • _GUIRegisterMsg() • _GUISetIcon() • _Icon_Clear()/_Icon_Set() • _IdleTime() • _InetGet() • _InetGetGUI() • _InetGetProgress() • _IPDetails() • _IsFileOlder() • _IsGUID() • _IsHex() • _IsPalindrome() • _IsRegKey() • _IsStringRegExp() • _IsSystemDrive() • _IsUPX() • _IsValidType() • _IsWebColor() • _Language() • _Log() • _MicrosoftInternetConnectivity() • _MSDNDataType() • _PathFull/GetRelative/Split() • _PathSplitEx() • _PrintFromArray() • _ProgressSetMarquee() • _ReDim() • _RockPaperScissors()/_RockPaperScissorsLizardSpock() • _ScrollingCredits • _SelfDelete() • _SelfRename() • _SelfUpdate() • _SendTo() • _ShellAll() • _ShellFile() • _ShellFolder() • _SingletonHWID() • _SingletonPID() • _Startup() • _StringCompact() • _StringIsValid() • _StringRegExpMetaCharacters() • _StringReplaceWholeWord() • _StringStripChars() • _Temperature() • _TrialPeriod() • _UKToUSDate()/_USToUKDate() • _WinAPI_Create_CTL_CODE() • _WinAPI_CreateGUID() • _WMIDateStringToDate()/_DateToWMIDateString() • Au3 script parsing • AutoIt Search • AutoIt3 Portable • AutoIt3WrapperToPragma • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • DirToHTML5 • FileInstallr • FileReadLastChars() • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIEvents • GUIGetBkColor() • Int_Parse() & Int_TryParse() • IsISBN() • LockFile() • Mapping CtrlIDs • OOP in AutoIt • ParseHeadersToSciTE() • PasswordValid • PasteBin • Posts Per Day • PreExpand • Protect Globals • Queue() • Resource Update • ResourcesEx • SciTE Jump • Settings INI • SHELLHOOK • Shunting-Yard • Signature Creator • Stack() • Stopwatch() • StringAddLF()/StringStripLF() • StringEOLToCRLF() • VSCROLL • WM_COPYDATA • More Examples... Updated: 22/04/2018
smartee Posted August 14, 2011 Posted August 14, 2011 Or this #include <Array.au3> $aLastOctet = StringRegExp(FileRead("test.txt"), "63\.240\.202\.(\d+):4000", 3) _ArrayDisplay($aLastOctet)
Rogue5099 Posted August 14, 2011 Author Posted August 14, 2011 thanks for the help guys. I don't know if I'm just having a brain fart today or what... $Return = "" $IP = StringRegExp($Read, "63\.240\.202\.(\d+):4000", 3) For $x = 1 to UBound($IP) $Return = $Return & $IP[$x] & ", " Next Return(StringTrimRight($Return, 2)) If the array is just 1 then it should just be "" + 145 + ", " trimmed 2 so 145 right? Im getting "Array variable has incorrect number of subscripts"??? Sometimes its 1 sometimes it can be up to 4 numbers returned. My projects: Inventory / Mp3 Inventory, Computer Stats
JohnOne Posted August 14, 2011 Posted August 14, 2011 For $x = 1 to UBound($IP) -1 AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
Rogue5099 Posted August 14, 2011 Author Posted August 14, 2011 For $x = 1 to UBound($IP) -1For $x = 0 to UBound($IP) -1works!! Having such a blonde day thanks so much for help guys!!!! My projects: Inventory / Mp3 Inventory, Computer Stats
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now