If I am scanning from a text
Scanner s= new Scanner(\"texto.txt\");
// I want to compare the next char from the line with a <
>
Your code would something like...
Scanner s= new Scanner("texto.txt");
s.useDelimiter("");
while (s.hasNext()) {
if(s.nextChar()=='<'){
.....
}
Note that after the call of s.nextChar()
, the value is actually fetched, so its better to keep the variable, if you would like to use it further, like:
char ch = s.nextChar();