Search:

Type: Posts; User: copeg

Search: Search took 0.12 seconds.

  1. Replies
    19
    Views
    5,963

    [SOLVED] Re: Unknown Character

    Strings are immutable, and the replace function returns the resulting string rather than changing the calling object. So you must reassign the string value

    nflTeam = nflTeam.replace((char)0xA0, '...
  2. Replies
    19
    Views
    5,963

    [SOLVED] Re: Unknown Character

    Non-breaking space is a common element in html (if you are copying and pasting from a website, I wouldn't be surprised you'd ended up finding some). Just replace the character if you want it gone...
Results 1 to 2 of 2