Assignment 1 Level 3 Hash Code

Hi,

In the Assignment 1 Level 3 Advance Training, my Hash Code has space behind the Client Information, Client Country, and Client ID. It goes something like this, " FP75053- Bud Baril- France".

I typed the formula correctly,“clientID+”-“+clientName+”-“+clientCountry” but the result is wrong.
It could be the Get Text Activity that took in the space before the name.
For example, Client Country:(Space)Nigeria.

Are there any possible ways to solve this? Thanks for your help!

@siaochuenchong

Use Trim remove the spaces.

   clientID.Trim+”-"+clientName.Trim+"-"+clientCountry.Trim
5 Likes

Thanks Lakshman!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.