Navigation
API > API/Runtime > API/Runtime/Core
Description
A helper function to find closing parenthesis that matches the first open parenthesis found. The open parenthesis referred to must be at or further up from the start index.
| Name | FindMatchingClosingParenthesis |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
| Source | /Engine/Source/Runtime/Core/Private/Containers/String.cpp.inl |
int32 FindMatchingClosingParenthesis
(
const FString & TargetString,
const int32 StartSearch
)
the index in the given string of the closing parenthesis
Parameters
| Name | Remarks |
|---|---|
| TargetString | The string to search in |
| StartSearch | The index to start searching at |