I have a similar question to Find column whose name contains a specific string but with an extension.
I have a dataframe with column names, and I want to find the ones that contains a certain string, after the underscore symbol.
E.g I'm searching for mango in column names like 'mango_man', 'man_mango', 'apple_mango' but only when it occurs after '_'. Results in this case will only return 'man_mango', 'apple_mango'
Column name to be returned as a string or a variable.