FindMatchingClosingParenthesis

A helper function to find closing parenthesis that matches the first open parenthesis found.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Containers/UnrealString.h

Include

#include "Containers/UnrealString.h"

Source

/Engine/Source/Runtime/Core/Private/Containers/String.cpp

Syntax

int32 FindMatchingClosingParenthesis
(
    const FString & TargetString,
    const int32 StartSearch
)

Remarks

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.

Returns

the index in the given string of the closing parenthesis

Parameters

Parameter

Description

TargetString

The string to search in

StartSearch

The index to start searching at

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss