Can anyone please tell me why the following code prints 1 the high street and not 1 The High Street?:
    String propertyPageTitle = "1-the-high-street";
    propertyPageTitle = propertyPageTitle.replace("-", " ");
    WordUtils.capitalizeFully(propertyPageTitle);
    System.out.println(propertyPageTitle);
EDIT to show solution:
    String propertyPageTitle = "1-the-high-street";
    propertyPageTitle = propertyPageTitle.replace("-", " ");
    propertyPageTitle = WordUtils.capitalizeFully(propertyPageTitle);
    System.out.println(propertyPageTitle);
Supposing I wanted to ignore the word 'and' if it appears (I'm reading values from a .csv) and NOT change to titlecase? how would that be possible.
 
     
     
     
    