Hello,
Do you mean that you've downloaded the string solution zip file and don't know what to do next?
To install the solution, go to Settings > Solution > Import, and then it opens up a wizard which walks you through this process. Once that's complete, you'll see the CRMStringWorkflowUtility in All Solutions.
Then, under Settings > Process, make a new Process. It's just making a workflow for the Email entity, so when I get a new email enters the system that matches certain criteria, the workflow runs. In my setup, I have deliberately have an email "Set Regarding" the case in question. This is so that I can also access the related record on the Case entity. My specific workflow had three steps:
1. Copy the body of the email into the case description.
That is, "Add Step" > "Update Record" and updating the record called "Regarding (Case)" because, as I say, the Email is ALREADY set regarding the case.
Then in the "Update Record" template for the Case, updating the "Description" field with the {Description(Email)} value from the dynamic values dropdown.
2. Apply the "Remove HTML" custom step to the Description field of the Case
"Add Step" > LAT.WorkflowUtilities.String (2.3.0.0) > Remove HTML
Enter {Description(Regarding (Case))} from the dynamic values dropdown as the required Input on this custom step
3. Then this new string becomes available in the dynamic values dropdown (right at the bottom), so update the case record with the converted string
"Add Step" > "Update Record" (same record as before, called "Regarding (Case)"
Update the description field again, with the HTML Removed String(...). The ... will just be whatever you have named the previous step in your workflow, where the string conversion occurs.
Hope that helps and is fairly clear! I haven't used screenshots, but am happy to provide them if my language isn't clear.
Thanks,
Jon