Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. def cleanLine (lineToClean : String) : String = {
  2. lineToClean
  3. .trim
  4. .toLowerCase()
  5. .replaceAll("[-«»><'_¡!¿?0123456798/()\\*~\"+,.;:]", "")
  6. .replaceAll("[áäâà]", "a")
  7. .replaceAll("[éëêè]", "e")
  8. .replaceAll("[íïîì]", "i")
  9. .replaceAll("[óöôò]", "o")
  10. .replaceAll("[úüûù]", "u")
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement