PedroWarlock Posted July 5, 2019 Share Posted July 5, 2019 How to get string "ABCD | EFGH" (random text) using StringRegEx? "ABCD | EFGH" "ABV41 | 5678" Link to comment Share on other sites More sharing options...
jchd Posted July 5, 2019 Share Posted July 5, 2019 Please clarify your requirements. Post sample input covering all your real-world data, along with expected output. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Link to comment Share on other sites More sharing options...
PedroWarlock Posted July 5, 2019 Author Share Posted July 5, 2019 (edited) 4 hours ago, jchd said: Please clarify your requirements. Post sample input covering all your real-world data, along with expected output. file.exe|-test calc.exe|-open programa1.exe|go file1.txt|2.0.0.0 file2.txt|2.0.0.0 I need to do a separation of the texts and move to an array. separate the words between "|" array Result [[file.exe] [test], [calc.exe] [- open], [program.exe] [go], [file1.txt] [2.0.0.0], [file2.txt] [2.0.0.0]] Edited July 5, 2019 by PedroWarlock Link to comment Share on other sites More sharing options...
Nine Posted July 5, 2019 Share Posted July 5, 2019 Still not clear to me, why not use StringSplit ? 6 minutes ago, PedroWarlock said: this string does not come from a file, so I need to use StringRegEx “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
PedroWarlock Posted July 5, 2019 Author Share Posted July 5, 2019 5 minutes ago, Nine said: Still not clear to me, why not use StringSplit ? google translate, sorry I need to separate the texts before and after the "|" character. Link to comment Share on other sites More sharing options...
Nine Posted July 5, 2019 Share Posted July 5, 2019 (edited) StringSplit : look help file for it ! Edited July 5, 2019 by Nine PedroWarlock 1 “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
BrewManNH Posted July 5, 2019 Share Posted July 5, 2019 You can use _FileReadToArray and do a split on the "|" character to get the text into a 2D array. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
PedroWarlock Posted July 5, 2019 Author Share Posted July 5, 2019 (edited) 21 minutes ago, Nine said: StringSplit ! Show. I got. Thanks $sTest = "program1.ex_|5.0.0.42" & @CRLF & _ "file.sys|1.0.0.8" & @CRLF & _ "program2.Ex_|5.0.0.18" & @CRLF & _ "text.txt|0.0.0.0" Edited July 5, 2019 by PedroWarlock Link to comment Share on other sites More sharing options...
Nine Posted July 5, 2019 Share Posted July 5, 2019 @PedroWarlock If this is your input string, I would recommend you to use _ArrayAdd (...) PedroWarlock 1 “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
PedroWarlock Posted July 5, 2019 Author Share Posted July 5, 2019 (edited) 4 minutes ago, Nine said: @PedroWarlock If this is your input string, I would recommend you to use _ArrayAdd (...) expandcollapse popup#include<array.au3> #include <File.au3> $sTest = "program1.ex_|5.0.0.42" & @CRLF & _ "file.sys|1.0.0.8" & @CRLF & _ "program2.Ex_|5.0.0.18" & @CRLF & _ "text.txt|0.0.0.0" _GET_ATT_FILES($sTest) Func _GET_ATT_FILES($iStr) Local $iArr[0][2],$iSplit, $sDrive = "", $sDir = "", $sFileName = "", $sExtension = "" $iSplit = StringSplit($iStr, @CR) if @error Then Return SetError(-1) for $i=1 To UBound($iSplit)-1 Local $gstr = StringSplit($iSplit[$i], "|") ;Separa cada linha pelo "|" ex: programa.exe|1.0.0.1 = [programa.exe, 1.0.0.1] if Not @error and IsArray($gstr) And UBound($gstr) = 3 Then Local $is = _PathSplit($gstr[1], $sDrive, $sDir, $sFileName, $sExtension) ;Separa o Path do arquivo só para pegar o nome da extenção if Not @error and UBound($is) = 5 Then if ($is[4] = ".ex_") Then _ArrayAdd($iArr,$is[3] & ".exe" & "|" & $gstr[2],0,"|") ;TROCA .EX_ por .EXE Else _ArrayAdd($iArr, $gstr[1] & "|" & $gstr[2],0,"|") ;Adiciona normalmente o valor na tabela caso não tenha ".EX_" EndIf Else _ArrayAdd($iArr, $gstr[1] & "|" & $gstr[2],0,"|") ;Aiciona normalmente caso de erro no _PathSplit EndIf EndIf Next _ArrayDisplay($iArr) Return $iArr EndFunc Edited July 5, 2019 by PedroWarlock Link to comment Share on other sites More sharing options...
Nine Posted July 5, 2019 Share Posted July 5, 2019 Or : $sTest = "program1.ex_|5.0.0.42" & @CRLF & _ "file.sys|1.0.0.8" & @CRLF & _ "program2.Ex_|5.0.0.18" & @CRLF & _ "text.txt|0.0.0.0" $sTest = StringReplace ($sTest, "_|", "e|") Local $aArray [0][2] _ArrayAdd ($aArray,$sTest) _ArrayDisplay ($aArray) PedroWarlock 1 “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
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