I am getting spaces in L1 assignment

in assignment everything is working but when details are entered on sha1 website its showing multiple spaces and then its adds the content

@manoj2500,

Use Trim() function to trim unwanted blank spaces from string

yourString.Trim()
1 Like

@manoj2500

I also see the extracted string is incorrect.
I assume you are using the get full text activity.
The string got from this activity should then be broken down to get only the values for Client Id, Name and Country.
So the text that comes to the SHa1 will be the trimmed values of
ClientId+”-“+Name+”-“+Country

Hope this helps.