peter1175 Posted April 29, 2012 Posted April 29, 2012 (edited) If it's in a file that is. Eg. $file=FileOpen($inputText,0) $str=FileRead($file) $arrayOfText=StringSplit($str,"\n") FileClose($file) For $i=1 to $arrayOfText[0] If StringRegExp($arrayOfText[$i],"#",0)==1 Then ConsoleWrite("It's a hash."&@CRLF) ExitLoop EndIf Next ;Should print 'It's a hash' Edited April 29, 2012 by peter1175
kaotkbliss Posted April 29, 2012 Posted April 29, 2012 maybe you mean stringinstr, not stringregexp 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy!
Malkey Posted April 29, 2012 Posted April 29, 2012 Maybe this. Local $str = FileRead("Test.txt") ;If StringInStr($str, "#") Then ; or If StringRegExp($str, "#") Then ConsoleWrite("It's a hash." & @CRLF) EndIf
acidman Posted April 29, 2012 Posted April 29, 2012 use string compare it evaluates if two strings are equal. Local $str = Fileread("test.txt") If stringcompare($str, "#") = 0 Then ; 0 means the comparison between the two strings are equal if you use StringinStr it will search for occurrences ConsoleWrite("It's a hash") Else Exit EndIf [u]My dream is to have a dream...[/u]
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