Search:

Type: Posts; User: aussiemcgr

Search: Search took 0.15 seconds.

  1. Replies
    19
    Views
    5,963

    [SOLVED] Re: Unknown Character

    In my defense, I was at college during the day and the internet is so ungodly slow that loading a page is a 10 minute endeavor.
  2. Replies
    19
    Views
    5,963

    [SOLVED] Re: Unknown Character

    Oh, the miracle of subtle changes. Thanks, worked like a charm.
  3. Replies
    19
    Views
    5,963

    [SOLVED] Re: Unknown Character

    Well, its kind of hard to do that without providing you with the data, and its kind of hard to provide the data because you cant actually see the character. I could provide the Excel Sheet, but...
  4. Replies
    19
    Views
    5,963

    [SOLVED] Re: Unknown Character

    Well, its kind of hard to do that without providing you with the data, and its kind of hard to provide the data because you cant actually see the character. I could provide the Excel Sheet, but...
  5. Replies
    19
    Views
    5,963

    [SOLVED] Re: Unknown Character

    nflTeam.replace((char)0xA0, ' ');
    nflTeam = nflTeam.trim();
    if(nflTeam.substring(0,2).equals("GB"))
    ...
  6. Replies
    19
    Views
    5,963

    [SOLVED] Re: Unknown Character

    is there anyway to do that programmatically? Because I've got 7 sheets ranging from 32 to 107 rows that will be changed by the user and I'd rather make it so the user has to do the least amount of...
  7. Replies
    19
    Views
    5,963

    [SOLVED] Re: Unknown Character

    ASCII Code - The extended ASCII table
    says it is a "Non-breaking space". So, if it is in fact a space, then why isnt Java treating it so?
  8. Replies
    19
    Views
    5,963

    [SOLVED] Re: Unknown Character

    if(nflTeam.substring(0,2).equals("GB"))
    System.out.println(Integer.toHexString(nflTeam.charAt(2)));

    Based on what you said, I did that. It returns:

    What is that character in English...
  9. Replies
    19
    Views
    5,963

    [SOLVED] Unknown Character

    Hey, I have a question where I just need like a brainstorming thing to happen.

    I am writing a Fantasy Football Offline Draft Manager Program. I read in an Excel workbook that contains tables...
Results 1 to 9 of 9