Search:

Type: Posts; User: helloworld922

Search: Search took 0.07 seconds.

  1. Thread: Strings

    by helloworld922
    Replies
    3
    Views
    2,372

    Re: Strings

    Oh, haha I didn't read the the first part of the question. For that portion, you can "cheat" by taking advantage of the underlying Unicode representation of characters. You will have to convert the...
  2. Thread: Strings

    by helloworld922
    Replies
    3
    Views
    2,372

    Re: Strings

    You can use the Character.isLetter() method:

    Also, fyi don't initialize strings by creating a new String. Strings are immutable, so doing so is just wasting time and memory.


    String data =...
Results 1 to 2 of 2