I have a dataset that is like this:
| Name |
| Instruments_Base__c |
| Cross_Selection_HR__c |
| CrossSelection_Base__c |
| VPN_Instruments_HR__c |
| T_and_S_Base__c |
| T_and_S_HR__c |
| VHS_3D_Recreation_Base__c |
| VHS_3D_Recreation_HR__c |
| Theoretical_Base__c |
| Theoretical_Products_HR__c |
I only want to keep Base__c and HR__C ( that is Base Underscore Underscore C or HR Underscore Underscore C).
I'm not great when it comes to working with RegEx, so any help would be great.
Thanks
Solved! Go to Solution.
Hi @AJ-Fahmy, assuming you are always only looking for Base__c or HR__c, you could use the following logic:
(Base__c|HR__c)
I have attached a sample workflow to help better understand my approach. Hope this helps!
Awesome, yep, this is what I was looking for. Thank you @AbhilashR , for your help
Awesome, yep, this is what I was looking for. Thank you @MarqueeCrew for your help
