filesstrings (version 2.5.0)

locate_braces: Locate the braces in a string.

Description

Give the positions of (, ), [, ], {, } within a string.

Usage

locate_braces(string)

Arguments

string

A character vector

Value

A list of data frames, one for each member of the string character vector. Each data frame has a "position" and "brace" column which give the positions and types of braces in the given string.

Examples

Run this code
# NOT RUN {
locate_braces(c("a{](kkj)})", "ab(]c{}"))
# }

Run the code above in your browser using DataCamp Workspace