O.P. [Request] A simple regular expression function
Im not any good at building regular expression so i need a litle help with this simple function.
All i want to do is search for a character in a string and move it to the end of the string.
Example:
function moveToEnd(string, search) ->
moveToEnd(AABBCCDDEE, A)
returns
BBCCDDEEAA (moves all the A's to the end)
|