Eddi96 Posted July 28, 2016 Share Posted July 28, 2016 Hello guys! expandcollapse popup#include <Array.au3> #include <File.au3> $iBenutzername = $Var_cmdline ; I need this to be the variable given as a parameter. ; I've read alot about CmdLine but can't think of a way to define a variable with it ; I hope you have an Idea on how to do it! Much love <3 Global $sFile = "C:\GTScript\query.txt" Global $aUsers _FileReadToArray($sFile, $aUsers, $FRTA_NOCOUNT) _ArrayColInsert($aUsers, 1) _ArrayColInsert($aUsers, 1) _ArrayColInsert($aUsers, 1) _ArrayColInsert($aUsers, 1) _ArrayColInsert($aUsers, 1) _ArrayColInsert($aUsers, 1) For $i = 0 To UBound($aUsers) - 1 $aSplit = StringRegExp($aUsers[$i][0], "(\S+)", $STR_REGEXPARRAYGLOBALMATCH) For $j = 0 To UBound($aSplit)-1 $aUsers[$i][$j] =$aSplit[$j] Next $aUsers[$i][0]=StringReplace($aUsers[$i][0],'>','') Next $sUser=$iBenutzername Func _FindUserID($aArray,$sSearch) Local $iRow=_ArraySearch($aArray,$sUser) If @error Then Return SetError(@error,-1,'') Local $sID=$aArray[$iRow][2] Return SetError(0,$iRow,$sID) EndFunc MsgBox(64,'Searcher UserID '&$sUser,_FindUserID($aUsers,$sUser)) Link to comment Share on other sites More sharing options...
jchd Posted July 28, 2016 Share Posted July 28, 2016 Aren't you in search of $CmdLine array? (Lookup in help file) 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...
SadBunny Posted July 28, 2016 Share Posted July 28, 2016 (edited) Here's a small example If $cmdline[0] <> 2 Then ; <-- I expect exactly two parameters MsgBox(64, "", "Please give your first name and last name as two parameters.") Exit EndIf $firstname = $cmdline[1] $lastname = $cmdline[2] MsgBox(64, "Hi!", "When I say " & $firstname & ", you say " & $lastname & "! Heeey, hooo!" & @CRLF) /edit: compile to scriptname.exe, then run "scriptname.exe myFirstName myLastName". Edited July 28, 2016 by SadBunny Roses are FF0000, violets are 0000FF... All my base are belong to you. Link to comment Share on other sites More sharing options...
Eddi96 Posted July 29, 2016 Author Share Posted July 29, 2016 @SadBunny Thank you alot! That is exactly what I needed! With your help I am now able to read the ID of a user, given as parameter, and then combine it with logoff and my backup script! Link to comment Share on other sites More sharing options...
SadBunny Posted July 29, 2016 Share Posted July 29, 2016 Sweet. Good luck! Roses are FF0000, violets are 0000FF... All my base are belong to you. 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