DaLiMan Posted June 29, 2004 Posted June 29, 2004 I want to compare text wich I copy from the screen with some other text wich I also copy from the screen. I've tried it with $var1 - $var2 = 0 because I want it to be the same, but this don't work. I've looked in the HELP file but couldn't find anything like this. Does someone have a way or some code for doing this?
Developers Jos Posted June 29, 2004 Developers Posted June 29, 2004 I want to compare text wich I copy from the screen with some other text wich I also copy from the screen. I've tried it with $var1 - $var2 = 0 because I want it to be the same, but this don't work. I've looked in the HELP file but couldn't find anything like this. Does someone have a way or some code for doing this? What about : If $var1 = $var2 then- or for exact matching - If $var1 == $var2 then 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.
DaLiMan Posted June 29, 2004 Author Posted June 29, 2004 What about : If $var1 = $var2 then- or for exact matching - If $var1 == $var2 thenWorks like a charm.... Why didn't I think of this..... :iamstupid: Thanx,
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