Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 790 Bytes

(8 kyu) String cleaning.md

File metadata and controls

15 lines (10 loc) · 790 Bytes

String cleaning (8 kyu)

https://www.codewars.com/kata/57e1e61ba396b3727c000251

Your boss decided to save money by purchasing some cut-rate optical character recognition software for scanning in the text of old novels to your database. At first it seems to capture words okay, but you quickly notice that it throws in a lot of numbers at random places in the text.

Examples (input -> output)

'! !'                 -> '! !'
'123456789'           -> ''
'This looks5 grea8t!' -> 'This looks great!'

Your harried co-workers are looking to you for a solution to take this garbled text and remove all of the numbers. Your program will take in a string and clean out all numeric characters, and return a string with spacing and special characters ~#$%^&!@*():;"'.,? all intact.