Back to FabImage Library website

You are here: Start » Function Reference » All Functions » String » RegexSearchInString

RegexSearchInString


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Header: STD.h
Namespace: fil
Module: FoundationLite

Finds all occurrences of the pattern in the input string. Uses ECMAScript regular expression grammar (https://en.cppreference.com/w/cpp/regex/ecmascript).

Syntax

void fil::RegexSearchInString
(
	const ftl::String& inString,
	const ftl::String& inRegex,
	bool inIgnoreCase,
	ftl::Array<ftl::String>& outStrings,
	bool& outFound
)

Parameters

Name Type Default Description
Input value
inString const String& Input string
Input value
inRegex const String& Input regex
Input value
inIgnoreCase bool False Ignore case
Output value
outStrings Array<String>& Array of matched elements
Output value
outFound bool& Matching element found

Errors

List of possible exceptions:

Error type Description
DomainError Empty Regex on input in RegexSearchInString.