Treatment matches

regex::matches


Parameters

↳ var regex: string

Inputs

⇥ text: Stream<string>

Outputs

↦ error: Block<string>
↦ matches: Stream<bool>


Matches stream of strings against a regex.

Every string coming through the text stream is matched against regex. matches tells if matching were found or not. error is emitted only if regex contains error.

The regex engine is Unicode-aware. Please refer to Regex Syntax in documentation for full syntax description.