IN Tweets, URLs will have '://' and other stopped characters. These can be identified in the parsed output as they are stopped by the "\" character.
Need to
split the string, somethig like this...
String [] BLAH2 = split (BLAH, '\');
This will remove the stop characters, then create an array of the bits left either side of them. THis needs putting back together with any recurring character patterns replaced with charcaters that produce phonics that will sound correct (even if they read strange)
count the occurences of the dodgy characters, so that we can tell how many Frankenstein parts to reassemble into a cleaned-up concatonation
IN Tweets, URLs will have '://' and other stopped characters. These can be identified in the parsed output as they are stopped by the "\" character.
Need to
This will remove the stop characters, then create an array of the bits left either side of them. THis needs putting back together with any recurring character patterns replaced with charcaters that produce phonics that will sound correct (even if they read strange)