I need to modify strings similar to "¼ cups of sugar" to "cups of sugar", meaning replacing all fraction symbols with "".
I have referred to this post and managed to remove ¼ using this line:
itemName = itemName.replaceAll("\u00BC", "");
but how do I replace every possible fraction symbol out there?