Skip to content

Regex.Search

Name Mandatory Description Default Type
⬅️ Input The string to search. String
Output ➡️ A sequence of strings, each containing one occurrence of the regex pattern. [[String]]
Regex No The regular expression as a string. `` String

This shard searches the input string for the regex pattern specified in the Regex parameter and outputs a sequence of strings, containing every occurrence of the pattern. An empty sequence is returned if there are no matches

Details

If there are no occurrences of the regex expression in the input string, an empty sequence is returned. The shard is by default case-sensitive. Searching for "Hello" in "hello" will return an empty sequence.