Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Verifying a String

  1. #1
    Junior Member
    Join Date
    Mar 2019
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Verifying a String

    Hi,

    I'm currently completing a task. The question goes:

    "Write a method called checkISBN( ) to verify the ISBN of each book. The ISBN is valid if

    • the number of characters is 10.
    • the first character is a letter in uppercase


    Return a String "Valid" if the ISBN is correct otherwise return "Invalid".

    So far, I have determined the following:

    - the length( ) method is used.
    -the charAt(0) method is used.
    - I have access to a private String variable called "isbn".
    - I will need to use an if...else statement.

    Its just that I'm struggling to put all of it together.

    Please help.

    Cheers.

  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Verifying a String

    Can you post the code you are working on with any questions you have?

    Be sure to wrap your code with code tags:

    [code]
    **YOUR CODE GOES HERE**
    [/code]

    to get highlighting and preserve formatting.
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. Replies: 2
    Last Post: March 28th, 2013, 09:54 AM
  2. Trimming, parsing, verifying grades entered are valid
    By MissMandy in forum What's Wrong With My Code?
    Replies: 7
    Last Post: March 27th, 2013, 07:59 AM
  3. Replies: 1
    Last Post: April 19th, 2012, 02:46 AM
  4. Downloading files and verifying MD5 checksums
    By Kryptix in forum What's Wrong With My Code?
    Replies: 3
    Last Post: October 3rd, 2010, 11:04 PM
  5. Replies: 3
    Last Post: June 14th, 2009, 09:31 PM