Treatment find
regex::find
Parameters
↳ var regex:
string
Inputs
⇥ text:
Stream<string>
Outputs
↦ error:
Block<string>
↦ found:
Stream<string>
↦ is_found:
Stream<bool>
Find in stream of strings according to a regex.
Every string coming through the text
stream is looked up with regex
.
is_found
tells if something were found or not, found
contains the found strings
(or empty string if corresonding text
input do not match).
error
is emitted only if regex contains error.
The regex syntax is Unicode-aware. Please refer to Regex Syntax in documentation for full syntax description.