Jump to content

Recommended Posts

Posted (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 by peter1175

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...