I am confused on how to extract the number within the parentheses in a “character” vector with R
This is the case
Data <- c("182 (450)", "7,736,000 (19,120,000)", "350 (860)")
And this is the output that I am trying to look for,
> 450, 19120000, 860
I am still searching for possible function and approach for this type of problem. Any help and suggestion would be appreciated
Thank you