User1632102518 posted
I have 2 strings,from which I want check if the string contains the complete word "part" instead of partner etc...
Input Strings:
event_adm-event_call-part
event_adm-event_call-partner_transaction
Output Strings:
event_adm-event_call-part
When I do if (Test.Contains("-part")){} it is returning true for both the values but I need only the string that contains -part .