...
boolean
Scroll pagebreak |
---|
Examples
Code Block | ||
---|---|---|
| ||
//set search string |
...
string $str = "zb"; |
...
int $fileID; |
...
boolean $StringExists; |
...
...
//open file for reading |
...
int $fileID = `fileOpen "C:/myfile.txt" "r"`; |
...
...
//search for string |
...
$StringExists = `seekToString $fileID $str`; |
...
...
//print true or false to log |
...
print $StringExists; |
...
...
//close file |
...
fileClose $fileID; |
Additional information
Related commands
...