between_str {strings} R Documentation

get between string function is similar to the ``stack_str`` function,

Description

but this function will get the min length string between two flag

Usage

between_str(str, left, right);

Arguments

str

-

left

[as string]

right

[as string]

Details

Authors

SMRUCC genomics Institute

Value

this function returns data object of type string.

clr value class

Examples

 # get tag value string in html
 let html_str  = "this is title string";
 let title_str = html_str |> between_str(">", "<");
 
 # [1] this is title string
 print(title_str);
 
 html_str = "this is < title string";
 title_str = html_str |> between_str(">", "<");
 
 # [1] this is
 print(title_str);

[Package strings version 2.33.856.6961 Index]