I am scraping some information from a 10 year old website that was built in ASP using Frontpage(originally) and Dreamweaver(lately). I am using PHP.
I am getting back strings with whitespace that is not spaces. Using the PHP trim function, some of the white space is removed but not all.
original string: string(47) " School Calendar"
trimmed string: string(34) " School Calendar"
How do I figure out what the whitespaces are so I can remove them?
My page showing var_dumps of the original and trimmed strings is here.