Перейти к контенту
← Назад

Stream.parseInt()

Description

parseInt() returns the first valid (long) integer number from the current position.

In particular:

This function is part of the Stream class, and can be called by any class that inherits from it (Wire, Serial, etc). See the Stream class main page for more information.

Syntax

stream.parseInt()
stream.parseInt(lookahead)
stream.parseInt(lookahead, ignore)

Parameters

stream : an instance of a class that inherits from Stream.
lookahead: the mode used to look ahead in the stream for an integer. Allowed data types: LookaheadMode. Allowed lookahead values:

ignore: used to skip the indicated char in the search. Used for example to skip thousands divider. Allowed data types: char

Returns

Data type: long.