erha Posted March 3, 2022 Share Posted March 3, 2022 This is my first post - I hope I follow all rules 😀 I have used the portable autoit version 3.3.15.4 Beta. After switching to 3.3.15.5 Beta I could run my programs from scite but the compilation crashes. For some reasons compile uses _PathSplit. In case the parameter $sFilePath is an empty string, _PathSplit crashes. _PathSplit uses Local $aArray = StringRegExp($sFilePath, "^\h*((?:\\\\\?\\)*(\\\\[^\?\/\\]+|[A-Za-z]:)?(.*[\/\\]\h*)?((?:[^\.\/\\]|(?(?=\.[^\/\\]*\.)\.))*)?([^\/\\]*))$", $STR_REGEXPARRAYMATCH) AutoIt version 3.3.15.4 returns an array with 5, AutoIt version 3.3.15.5 returns an array with 3 elements. The missing two elements are the reason for the crash. I have used this test program: #include "StringConstants.au3" Local $sFilePath = '' Local $aArray = StringRegExp($sFilePath, "^\h*((?:\\\\\?\\)*(\\\\[^\?\/\\]+|[A-Za-z]:)?(.*[\/\\]\h*)?((?:[^\.\/\\]|(?(?=\.[^\/\\]*\.)\.))*)?([^\/\\]*))$", $STR_REGEXPARRAYMATCH) MsgBox ( 0,0, UBound($aArray) ) As a workaround I changed _PathSplit to Func _PathSplit($sFilePath, ByRef $sDrive, ByRef $sDir, ByRef $sFileName, ByRef $sExtension) Local $aArray = StringRegExp($sFilePath, "^\h*((?:\\\\\?\\)*(\\\\[^\?\/\\]+|[A-Za-z]:)?(.*[\/\\]\h*)?((?:[^\.\/\\]|(?(?=\.[^\/\\]*\.)\.))*)?([^\/\\]*))$", $STR_REGEXPARRAYMATCH) If @error Then ; This error should never happen. ReDim $aArray[5] $aArray[$PATH_ORIGINAL] = $sFilePath EndIf if UBound ( $aArray) < 5 Then ; ### my change ReDim $aArray[5] $aArray[$PATH_ORIGINAL] = $sFilePath endif ... After this change I can compile my programs. Link to comment Share on other sites More sharing options...
Developers Jos Posted March 3, 2022 Developers Share Posted March 3, 2022 (edited) Could you also post an script that uses pathsplit demonstrating your issue? Ps I've split it into its own topic in support. Edited March 3, 2022 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
Nine Posted March 3, 2022 Share Posted March 3, 2022 @Jos I get also the problem on non-portable. #include <File.au3> #include <Array.au3> Local $sDrive, $sDir, $sFileName, $sExtension Local $arr = _PathSplit("", $sDrive, $sDir, $sFileName, $sExtension) _ArrayDisplay($arr, @AutoItVersion) Both SRE (current and beta) are identical. It might be the fix #2696: StringRegExp non-participating groups that causes the problem. Jos 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...
erha Posted March 3, 2022 Author Share Posted March 3, 2022 @Jos Nine has posted the script i just wanted to post too. His script crashes in the new autoit version. The error message is "D:\System\Programme\Portable\AutoIt\Current\Include\File.au3" (1012) : ==> Array variable has incorrect number of subscripts or subscript dimension range exceeded.: $sFileName = $aArray[$PATH_FILENAME] $sFileName = ^ ERROR Jos and labichea 2 Link to comment Share on other sites More sharing options...
Nine Posted March 3, 2022 Share Posted March 3, 2022 Crashes on : "Test" "Test.txt" "\Test.txt" "..\Test.txt" In other words, it does not crash only when a full path is pass to the function “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...
Developers Jos Posted March 3, 2022 Developers Share Posted March 3, 2022 Tnx, reopened https://www.autoitscript.com/trac/autoit/ticket/2696 so it can be checked. SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
labichea Posted March 5, 2022 Share Posted March 5, 2022 (edited) Same for me - The error happens almost immediately when asking for "Tools/Compile" from SCITE. It works when asking for "Tools/Build" ......\Include\File.au3" (1012) : ==> Array variable has incorrect number of subscripts or subscript dimension range exceeded.: $sFileName = $aArray[$PATH_FILENAME] $sFileName = ^ ERROR No error when compilation is outside of Scite. Edited March 5, 2022 by labichea additional finding Link to comment Share on other sites More sharing options...
Nine Posted March 5, 2022 Share Posted March 5, 2022 Still crashing in 3.3.16.0 “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...
Developers Jos Posted March 5, 2022 Developers Share Posted March 5, 2022 (edited) @Jon ... Edited March 5, 2022 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
mLipok Posted March 5, 2022 Share Posted March 5, 2022 (edited) On 3/3/2022 at 7:35 PM, Nine said: @Jos I get also the problem on non-portable. #include <File.au3> #include <Array.au3> Local $sDrive, $sDir, $sFileName, $sExtension Local $arr = _PathSplit("", $sDrive, $sDir, $sFileName, $sExtension) _ArrayDisplay($arr, @AutoItVersion) Both SRE (current and beta) are identical. It might be the fix #2696: StringRegExp non-participating groups that causes the problem. I tried your repro and after few more test I found out other issue AutoIt3.exe ended.rc:-1073741571 with this repro: #AutoIt3Wrapper_AutoIt3Dir="z:\AutoItPortable\AutoIt_3_3_16_0_rc1" #AutoIt3Wrapper_UseX64=n ConsoleWrite("! " & @AutoItVersion & @CRLF) _Example3() Func _Example3() Local Const $s_RegExp = _ ; $s_RegExp comes from Func _PathSplit( '^\h*((?:\\\\\?\\)*(\\\\[^\?\/\\]+|[A-Za-z]:)?(.*[\/\\]\h*)?((?:[^\.\/\\]|(?(?=\.[^\/\\]*\.)\.))*)?([^\/\\]*))$' Local $sString = 'xxxxxxxxxx' For $iCounter = 1 To 11 ConsoleWrite("- step #" & $iCounter & ' StringLen= ' & StringLen($sString) & @CRLF) StringRegExp($sString, $s_RegExp, 0) $sString &= $sString Next EndFunc ;==>_Example3 results: Quote ! 3.3.14.5 - step #1 StringLen= 10 - step #2 StringLen= 20 - step #3 StringLen= 40 - step #4 StringLen= 80 - step #5 StringLen= 160 - step #6 StringLen= 320 - step #7 StringLen= 640 - step #8 StringLen= 1280 - step #9 StringLen= 2560 - step #10 StringLen= 5120 - step #11 StringLen= 10240 !>18:47:37 AutoIt3.exe ended.rc:-1073741571 Edited March 5, 2022 by mLipok Signature beginning:* Please remember: "AutoIt"..... * Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 * My contribution to others projects or UDF based on others projects: * _sql.au3 UDF * POP3.au3 UDF * RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related: * How to use IE.au3 UDF with AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming" , be and \\//_. Anticipating Errors : "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24 Link to comment Share on other sites More sharing options...
Administrators Jon Posted March 5, 2022 Administrators Share Posted March 5, 2022 See, this is why I'm not blindly adding the alpha patches. It's really easy to mess up some of this codebase. Earthshine and TheDcoder 2 Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
mLipok Posted March 5, 2022 Share Posted March 5, 2022 @Jon this is old bug: Quote ! 3.3.14.5 - step #1 StringLen= 10 - step #2 StringLen= 20 - step #3 StringLen= 40 - step #4 StringLen= 80 - step #5 StringLen= 160 - step #6 StringLen= 320 - step #7 StringLen= 640 - step #8 StringLen= 1280 - step #9 StringLen= 2560 - step #10 StringLen= 5120 - step #11 StringLen= 10240 !>18:51:24 AutoIt3.exe ended.rc:-1073741571 Signature beginning:* Please remember: "AutoIt"..... * Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 * My contribution to others projects or UDF based on others projects: * _sql.au3 UDF * POP3.au3 UDF * RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related: * How to use IE.au3 UDF with AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming" , be and \\//_. Anticipating Errors : "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24 Link to comment Share on other sites More sharing options...
mLipok Posted March 5, 2022 Share Posted March 5, 2022 even au3.3.10.0 Quote ! 3.3.10.0 - step #1 StringLen= 10 - step #2 StringLen= 20 - step #3 StringLen= 40 - step #4 StringLen= 80 - step #5 StringLen= 160 - step #6 StringLen= 320 - step #7 StringLen= 640 - step #8 StringLen= 1280 - step #9 StringLen= 2560 - step #10 StringLen= 5120 - step #11 StringLen= 10240 !>18:52:49 AutoIt3.exe ended.rc:-1073741571 Signature beginning:* Please remember: "AutoIt"..... * Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 * My contribution to others projects or UDF based on others projects: * _sql.au3 UDF * POP3.au3 UDF * RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related: * How to use IE.au3 UDF with AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming" , be and \\//_. Anticipating Errors : "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24 Link to comment Share on other sites More sharing options...
Administrators Jon Posted March 5, 2022 Administrators Share Posted March 5, 2022 Not looking at old bugs. This thing is going out the door. Reverted the string reg exp groups change and that looks to fix the crash. Will create a new installer. TheDcoder 1 Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
Nine Posted March 5, 2022 Share Posted March 5, 2022 @Jon RC2 fixes the issue. Thanks. “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...
Solution erha Posted March 6, 2022 Author Solution Share Posted March 6, 2022 I have tested with AutoIt portable 3.3.16.0-rc3. Everything is okay. Thank you. Link to comment Share on other sites More sharing options...
jpm Posted June 17, 2022 Share Posted June 17, 2022 (edited) I don't undertand what happen with 3.3.16.0-rc1 What I am sure is the propose patch to Jon was OK. I cannot reproduce any error mention above. I agree that the support of non participating group return difference which are the right way to return Just use https://regex101.com/ to validate your pattern. Previously StringRegExp() was returning extra group. In fact nobody can give me a pattern which was ok without any adaptation to _PathSplit() The _PathSplit() has been adapted to handle these differences. Cheers Edited: I recheck what was included in 3.3.16.0.rc1 and I found Jon forget to update the File.au3 Edited June 17, 2022 by jpm Link to comment Share on other sites More sharing options...
argumentum Posted June 17, 2022 Share Posted June 17, 2022 3 hours ago, jpm said: 3.3.16.0-rc1 rc2 is the newer one ( Just in case. Don't hit me ) Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting. Link to comment Share on other sites More sharing options...
jchd Posted June 17, 2022 Share Posted June 17, 2022 3 hours ago, jpm said: In fact nobody can give me a pattern which was ok without any adaptation to _PathSplit() Indeed I've been unable to find a reasonable pattern to match every form a path can have. expandcollapse popupLocal $a = [ _ "fff", _ "fff.ext", _ "fff.more.ext", _ "./fff.more.ext", _ "..\fff.more.ext", _ "..\fff. more .ext ", _ "..\././.../fff. more .ext ", _ "c:.../fff. more .ext ", _ "..\fff. more .ext ", _ "C:\Documents\Newsletters\Summer2018.pdf", _ "\Program Files\Custom Utilities\StringFinder.exe", _ "2018\January.xlsx", _ "..\Publications\TravelBrochure.pdf", _ "C:\Projects\apilibrary\apilibrary.sln", _ "C:Projects\apilibrary\apilibrary.sln", _ "\\system07\C$\", _ "\\Server2\Share\Test\Foo.txt", _ "\\.\C:\Test\Foo.txt", _ "\\?\C:\Test\Foo.txt", _ "\\.\Volume{b75e2c83-0000-0000-0000-602f00000000}\Test\Foo.txt", _ "\\?\Volume{b75e2c83-0000-0000-0000-602f00000000}\Test\Foo.txt", _ "\\.\UNC\Server\Share\Test\Foo.txt", _ "\\?\UNC\Server\Share\Test\Foo.txt", _ "\\?\server1\e:\utilities\\filecomparer\", _ "c:\temp\test-file.txt", _ "\\127.0.0.1\c$\temp\test-file.txt", _ "\\LOCALHOST\c$\temp\test-file.txt", _ "\\.\c:\temp\test-file.txt", _ "\\?\c:\temp\test-file.txt", _ "\\.\UNC\LOCALHOST\c$\temp\test-file.txt", _ "\\127.0.0.1\c$\temp\test-file.txt", _ "con", _ "con:", _ "lpt2", _ "com4:", _ "", _ ; invalid ".", _ ; invalid "Z꞉abc.xyz", _ ; dirty Unicode trick using "꞉" (ChrW(0x2236)) instead of ":" (ASCII column) "..", _ "...", _ "...a", _ "....a", _ "....a.", _ "....a...", _ ".a.b", _ ".a.b.", _ ".3", _ "3." _ ] 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...
jpm Posted June 17, 2022 Share Posted June 17, 2022 34 minutes ago, argumentum said: rc2 is the newer one ( Just in case. Don't hit me ) I just explain why rc1 was not ok. I still have a working solution as I said argumentum 1 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