Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7173995
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T15:56:28+00:00 2026-05-28T15:56:28+00:00

I just started learning Java and I’m having trouble formatting string. In the problem

  • 0

I just started learning Java and I’m having trouble formatting string. In the problem I have a string a user inputted that is a name in the format: “First Middle Last”. I need to output the string in the format: “Last, First MI. ” (MI is middle initial).

Here is what I have so far, I have the first name working, but unsure how to go about getting the last and middle initial out of the string.

// Variable declarations
String name, first, last, middle;
Scanner scan = new Scanner (System.in);

// Get name from user in format "First Middle Last"
System.out.println("Enter the person's name: ");
name = scan.nextLine();

// Get first, middle initial, and last name from the string
first = name.substring(0, name.indexOf(" "));
middle =
last =


// Output formatted name as "Last, First MI."
System.out.println(last + ", " + first + " " + middle + ".");

so for example if the user entered: “John Robert Doe”, it would output as “Doe, John R.”

Any help is appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T15:56:30+00:00Added an answer on May 28, 2026 at 3:56 pm

    You can use the split method of the String class

    // Get first, middle initial, and last name from the string
    String nameParts [] = name.split(" ");
    // not sure if you need these variables, but I guess you get the picture
    first = nameParts [0];
    middle = nameParts [1];
    last = nameParts [2];
    middleInital = middle.charAt(0);
    
    // Output formatted name as "Last, First MI."
    System.out.println(last + ", " + first + " " + middleInital + ".");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just started learning C++ (coming from Java ) and am having some serious
First of all, this is my code (just started learning java): Queue<String> qe =
G'Day Programmers, I am from Java background however I have just started learning C++
I have just started learning java and i have about 8 months time. My
I am just starting out learning Java, GAE etc. I have started a project
I've just started learning Java and have come across a little quirk I'm not
I'm learning Java and just started playing around with mysql and am having a
I have just started learning about Java server faces and successfully tested out my
I have just started learning java, and know only a small amount of code,
I just recently started learning Java. I have a question which is more about

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.