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 7528345
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T04:21:12+00:00 2026-05-30T04:21:12+00:00

I have this String: player.login name=username;x=52;y=406 how would I be able to split it

  • 0

I have this String: "player.login name=username;x=52;y=406" how would I be able to split it so I easily could do Player pl = new Player(name, x, y) ?

I tried with a regex that looks like this: "([a-zA-Z_]+)[=]{1}([a-zA-Z0-9_]+)[;]{1}" but I’m not very good at regexs so it didn’t work.

EDIT: Someone came up with a good solution so no need to comment. 🙂

What I used:

public static void main(String args[]) {
    String login = "player.login name=username;x=52;y=406";
    String str = login.substring("player.login".length() + 1);
    String[] sp = str.split(";");
    Player player = new Player("", 0, 0);
    for (String s : sp) {
        String[] a = s.split("=");
        if (a[0].equals("name")) player.username = a[1];
        else if (a[0].equals("x")) player.x = toInt(a[1]);
        else if (a[0].equals("y")) player.y = toInt(a[1]);
    }
    System.out.println("Player: " + player.username + " @ " + player.x + ", " + player.y);
}

public static int toInt(String s) {
    return Integer.parseInt(s);
}
  • 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-30T04:21:15+00:00Added an answer on May 30, 2026 at 4:21 am

    This should work (you should add bound checks before calling exp.split("=")[1]):

    public static void main(String[] args) {
        String s = "player.login name=username;x=52;y=406";
        String[] expressions = s.split(";");
        for (String exp : expressions) {
            System.out.println(exp.split("=")[1]);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

OK so I have this HashMap private Map<String, Player> players = new HashMap<String, Player>();
I have this string 'john smith~123 Street~Apt 4~New York~NY~12345' Using JavaScript, what is the
I have this string in PHP: $string = name=Shake & Bake&difficulty=easy; For which I
I have this string stored in a variable: IN=bla@some.com;john@home.com Now I would like to
Here is my code: xsdFile: <complexType name=Player> <sequence> <element name=Login type=string></element> <element name=Passwd type=string></element>
I have this XML file: <?xml version=1.0 encoding=UTF-8 standalone=no?> <games> <game id=123456 name=501> <player
I have server output that looks like this PLAYER_ENTERED name ipaddress username If the
Let's say I have this string: Your player has a good keeper skill and
Suppose I have this code: static void Main(string[] args) { var thread = new
I have this string: 123-456-7 I need to get this string: 1234567 How I

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.