79451963

Date: 2025-02-19 15:50:17
Score: 2
Natty:
Report link

No package needed and dealing with the fact that you have a vector of such strings:

v=c("ABC_EFG_HIG_ADF_AKF","ADF_AKF_MNB_RRR")
sapply(strsplit(v,"_"),"[",3)
# [1] "HIG" "MNB"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29713841