Hello, I am working on the assignment for Calculate Client Security Hash and I am stuck at the step where I need to use to extract the client information.
I used get tekst to get the client information and store it in one output variable: Client Information
Then I use Split String to get the values for Client_Id, Client_Name and Client_Country
So far so good.
But when I assign these values to a new string as input for the Hashformula it seems to contains enters.
I do not know how to remove these.
The expression I use for the split string is:
Client_information.Split({"Client ID: ", “Client Name”}, StringSplitOptions.None)(1)
Client_information.Split({"Client Name: ", “Client Country”}, StringSplitOptions.None)(1)
Client_information.Split({"Client Country: ", “”}, StringSplitOptions.None)(1)
When I use Write Line out_Client_ID+out_Client_Name+out_Client_Country the output shows
So there seem to be enters in the variables.
I hope someone can help me with removing the enters or using different option to get the values from Client_information.