stack_str {strings} | R Documentation |
stack_str(str, left, right);
this function will get max length string between left and right stack string
# get tag value string in html
let html_str = "this is title string ";
let title_str = html_str |> stack_str(">", "<");
# [1] this is title string
print(title_str);
html_str = "this is < title string ";
title_str = html_str |> stack_str(">", "<");
# [1] this is < title string
print(title_str);