TwistedXion Posted February 22, 2020 Posted February 22, 2020 (edited) So if I make an array like so $test[2] = [1,2] how can I add $test[0] and the number 3 so that $test[0] goes from being equal to 1 to being equal to 4 I tried $test[0] = $test[0] + 1 and it did not work any help would be great I could find nothing online nor anywhere in the documentation Thank you guys for taking the time to sort me out. Edited February 22, 2020 by TwistedXion can't spell
jchd Posted February 22, 2020 Posted February 22, 2020 Use _ArrayInsert() 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)
TwistedXion Posted February 22, 2020 Author Posted February 22, 2020 i'm not trying to change the number by hand by changing the number i'm trying to add it to another number to change the number inside the array
jchd Posted February 22, 2020 Posted February 22, 2020 Sorry for misunderstanding. Why aren't you happy with this? Local $test[2] = [1,2] $test[0] = $test[0] + 3 ConsoleWrite($test[0] & @LF) 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)
argumentum Posted February 22, 2020 Posted February 22, 2020 1 hour ago, TwistedXion said: I tried $test[0] = $test[0] + 1 and it did not work it should have worked. ...you can also $test[0] += 1 , but again, it should have worked. Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting.
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