Removing colon from in front of ([ClientID]-[ClientName]-[ClientCountry] ) Assignment 1

In the advanced training assignment 1, when I extract the information from the work item, I am getting a ": " in front of my client ID. For example: “: KJ93404-Garret Reising-Italy”. This then leads to an incorrect hash output. Attached is the assign activity that I am using to extract the ClientID. The same code works with the ClientName and the Country, since there is no colon on those items. What can I do?

hi @jlev11

Replace colon(: with null string , like below

strString.replace(cchar(":"),"")