PedroWarlock 0 Posted July 5, 2019 How to get string "ABCD | EFGH" (random text) using StringRegEx? "ABCD | EFGH" "ABV41 | 5678" Share this post Link to post Share on other sites
jchd 1,514 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) Share this post Link to post Share on other sites
PedroWarlock 0 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 Share this post Link to post Share on other sites
Nine 992 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 Not much of a signature but working on it... Spoiler Block all input without UAC Save/Retrieve Images to/from Text Tool to search content in au3 files Date Range Picker Sudoku Game 2020 Overlapped Named Pipe IPC x64 Bitwise Operations Multi-keyboards HotKeySet Fast and simple WCD IPC GIF Animation (cached) Share this post Link to post Share on other sites
PedroWarlock 0 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. Share this post Link to post Share on other sites
Nine 992 Posted July 5, 2019 (edited) StringSplit : look help file for it ! Edited July 5, 2019 by Nine 1 PedroWarlock reacted to this Not much of a signature but working on it... Spoiler Block all input without UAC Save/Retrieve Images to/from Text Tool to search content in au3 files Date Range Picker Sudoku Game 2020 Overlapped Named Pipe IPC x64 Bitwise Operations Multi-keyboards HotKeySet Fast and simple WCD IPC GIF Animation (cached) Share this post Link to post Share on other sites
BrewManNH 1,305 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 Share this post Link to post Share on other sites
PedroWarlock 0 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 Share this post Link to post Share on other sites
Nine 992 Posted July 5, 2019 @PedroWarlock If this is your input string, I would recommend you to use _ArrayAdd (...) 1 PedroWarlock reacted to this Not much of a signature but working on it... Spoiler Block all input without UAC Save/Retrieve Images to/from Text Tool to search content in au3 files Date Range Picker Sudoku Game 2020 Overlapped Named Pipe IPC x64 Bitwise Operations Multi-keyboards HotKeySet Fast and simple WCD IPC GIF Animation (cached) Share this post Link to post Share on other sites
PedroWarlock 0 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 Share this post Link to post Share on other sites
Nine 992 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) 1 PedroWarlock reacted to this Not much of a signature but working on it... Spoiler Block all input without UAC Save/Retrieve Images to/from Text Tool to search content in au3 files Date Range Picker Sudoku Game 2020 Overlapped Named Pipe IPC x64 Bitwise Operations Multi-keyboards HotKeySet Fast and simple WCD IPC GIF Animation (cached) Share this post Link to post Share on other sites