strex (version 2.0.0)

str_locate_braces: Locate the braces in a string.

Description

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

Usage

str_locate_braces(string)

Value

A data frame with 4 columns: string_num, string, position and brace. Every extracted brace amount gets its own row in the tibble detailing the string number and string that it was extracted from, the position in its string and the brace.

Arguments

string

A character vector

See Also

Other locators: str_locate_nth()

Examples

Run this code
str_locate_braces(c("a{](kkj)})", "ab(]c{}"))

Run the code above in your browser using DataLab