-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By Colduction
Hi again guys!, i had COVID-19 for twice and i couldn't check the forum since 3 or 4 months ago till now! i hope you will get better if you're fighting for beat COVID-19
I have two question, first is about extracting all of the IP Address from an IP Ranges, for e.g: 192.168.1.1-192.255.255.255 (Start and End are variable and will be defined by the user) and for second one, i have a friend that he is Python programmer, he made a IP Parser that it can support large txt files (1TB) and it can parse all of them under 10min and it also supports low-end PCs that have 1 GB RAM!
The list that his program parses are:
#1765497 192.168.1.1 8082 #1765496 192.168.1.1 8084 #1965493 192.168.1.1 8089 #9565495 192.168.1.1 8086 #2565492 192.168.1.1 8081 and it converts very very fast to this:
192.168.1.1:8082 192.168.1.1:8084 192.168.1.1:8089 192.168.1.1:8086 192.168.1.1:8081 I wonder how to do this via AutoIt, if you can help me in this way, i will be happy✌❤
Thanks for your helps.
FIRST_QUESTION_TEST.au3
-
By Alok_Arora
Hello Sir,
While searching for the solution to my problem, I have just gone through some of your old post.
My name is Alok Arora
Email id is *snip*
I am writing a code to store logs for each script I run. This I did by using FileWriteLog function and it is successfully storing logs in txt file.
Now, I have to work on to read the log file and if any script has been mistakenly clicked twice in a day script will pop up a message that task already done for the day by verifying entries in the log file.
I have the logic for it..
I mean a variable will read the log file and will search for the entry and will perform action if entry found or not.
I believe for reading the file I can write a code like
$i =fileread("logfile.txt")
Now I am stuck on how to compare the log entry in log file.
Can you please help me in this?
-
By TheAutomator
I'm writing a recursive decent parser in Autoit!
The programming language i'm making is called HighLevel.
I'm doing this for learning purposes, because it's fun and because I can implement it into my other project:
Fullscreen Console With custom programming language!
It's not easy...
In Autoit you don't have objects like in Java or Visual Basic, so I had to figure out a way to still convert the code to an abstract syntax tree.
I used nested array's and array based dictionary's instead of objects.
The code is still very dirty and I need to make a lot of modifications but if you're careful with testing you'll see what it can do already.
Console window
Because this code eventually will get implemented into my console project I crafted a nice little console window (with a custom sci-fi looking theme, yeah i was a little bored haha).
{ESC} is your panic button for now, it terminates the script completely.
If you get an error while opening a script the text will turn red.
To minimize it press the blue button, to close it use the red one, to drag the gui just grab it on one of the sides.
The console window will display what you write to it with your "HighLevel-script" and some additional information:
How to test it:
Download: HighLevel.Au3, Debug.Au3 (includes a function to display nested arrays for debugging), GUI.bmp (for the console)
Compile the Autoit code to EXE.
The GUI.bmp must be in the same folder as the EXE file!
Write a HighLevel-script (text file) and drag it into the compiled autoit-exe.
The custom made little console window will pop up in the left top corner of your screen and your HighLevel-script (the text file) will be interpreted and executed.
The Language:
exit script: Abort show / hide the console: Show Hide write to/clear the console: Write 'this is a ''string''!' Clear variables: test_var_1 = 123 some_list = ['a', 5, true] some_list[1] = 3 math = 1 + 2 * 3 / 4 - -5 & test_var beep (under construction): Beep F, optD wait X seconds: Wait X Messages: Message 'Hello World!' move/click the mouse: Move X, Y Click send keys (under construction): Send 'HighLevel', True if's: If false ElseIf true # this part will run Else End subs: Sub X # do stuff End Call X for loops: For X = 1 to 10 # X iterates End Values: Input 'Give me input' Random YesNo 'yes or no' operators: + - * / & > = ! < ( ) And Not Or
Example script:
# my first HighLevel script message 'Hello World!' message 'Lets write to the console...' clear # clear the console... list = ['a', 16, true] for i = 0 to 2 write list[i] wait 1 end sub test if YesNo 'would you like to quit?' message 'Goodbye!' abort else write 1 + 2 * 3 & ' math!' end end call test
test script.HighLevel
GUI.bmp
Debug.au3
HighLevel.au3
-
By Fade91
Hello, first time poster here
I am working on a project that has to parse a log file in real time. The thing is I know it's hard for Autoit to attach itself to log files when they're already in use by other programs, at least in my experience.
I was taking a look at this thread because the log file is quite large and I think Autoit might be a little slow on it's own.
The thing is I don't know how to use this properly to extract all data out of a log file or is there a native way to do this using Autoit.
Basically , I just need a log parser that is able to read from a log that is 'already opened' and 'being written to'
Thanks!
-