this library is fully created by me using sketchware pro + javaN-IDE.. it's simple and light lib that uses 6 useful methods to filter your text and keep only wanted picture or content you Want..
String text="This is random text that contains numbers 123 and symbols @#$ and spaces in between";
// 1) to keep letters:
String letters = TextFilter.keepLetters(text);
// 2) to keep sentences (Letters with spaces):
String sentences = TextFilter.keepSentences(text);
// 3) to keep numbers:
String numbers = TextFilter.keepNumbers(text);
// 4) to keep symbols:
String symbols = TextFilter.keepSymbols(text);
// 5)to remove all spaces:
String noSpace = TextFilter.removeSpaces(text);
// 6) to remove specific character (I from Hello: Heo)
String specificChar = TextFiliter.removespecificChar(text, "T"); // case sensitive (if Capital Letters would remove Capitol only and so on..)
You guys are not allowed to modify this lib and its codes without any permission from me directly.
Hussein Shakir (Smith) © 2021.
©2025 Sketchub | User Policy