Strip a set of characters from a string: Difference between revisions

Content added Content deleted
(promoted to task)
m (tidy)
Line 1: Line 1:
{{task}}
{{task|String manipulation}}
The task is to create a function that strips a set of characters from a string. The function should take two arguments: the first argument being a string to stripped and the second, a string containing the set of characters to be stripped. The returned string should contain the first string, stripped of any characters in the second argument:
The task is to create a function that strips a set of characters from a string. The function should take two arguments: the first argument being a string to stripped and the second, a string containing the set of characters to be stripped. The returned string should contain the first string, stripped of any characters in the second argument:


<lang pseudocode> print stripchars("She was a soul stripper. She took my heart!","aei")
<lang pseudocode> print stripchars("She was a soul stripper. She took my heart!","aei")
Sh ws soul strppr. Sh took my hrt!</lang>
Sh ws soul strppr. Sh took my hrt!</lang>


=={{header|J}}==
=={{header|J}}==
Line 64: Line 64:
>>> stripchars("She was a soul stripper. She took my heart!", "aei")
>>> stripchars("She was a soul stripper. She took my heart!", "aei")
'Sh ws soul strppr. Sh took my hrt!'</lang>
'Sh ws soul strppr. Sh took my hrt!'</lang>

[[Category:String manipulation]]