;Task:
Create a function that strips a set of characters from a string. 


The function should take two arguments: 
:::# &nbsp; a string to be stripped 
:::# &nbsp; a string containing the set of characters to be stripped

<br>
The returned string should contain the first string, stripped of any characters in the second argument:
<syntaxhighlight lang="pseudocode"> print stripchars("She was a soul stripper. She took my heart!","aei")
Sh ws  soul strppr. Sh took my hrt!</syntaxhighlight>


{{Template:Strings}}
<br><br>

