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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:08:33+00:00 2026-06-04T01:08:33+00:00

I want to get some value from a string. For example: String string= Name:

  • 0

I want to get some value from a string. For example:

String string= "Name: armand," + "Age: 22," + "etc";

How can i get for example the name using regular expressions?

I am very bad with regex , so i cant figure out how to solve this.

  • 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-06-04T01:08:35+00:00Added an answer on June 4, 2026 at 1:08 am

    Depends on what you really want to do, for example if you only want to get the value of a given key, given that key and value are separated by colon and key/value are separated by comma, you can just split in this way string first by comma and then by colon :

    String[] couple = string.split(",");
    
     for(int i =0; i < couple.length ; i++) {
        String[] items =couple[i].split(":");
        items[0]; //Key
        items[1]; //Value
    }
    

    If you want to do it with a regular expression you can do in this way :

        String string = "Name:armand,Age:22,";
        Pattern pattern = Pattern.compile("(\\w+?):(\\w+?),");
        Matcher matcher = pattern.matcher(string);
        while (matcher.find()) {
            String key = matcher.group(1);
            String value = matcher.group(2);
    
            System.out.println("Key : " + key + " value : " + value);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using http://lite.facebook.com And i want to get some data from my account.
I want to get some objects from array contains objects where one of objects
I want to get some images from a movie and make a gif. What
I want to get some text from a PHP page into an Android application.
I want to get some images from a flash webpage and I got the
I have one problem , I want to get some data from XML file
So, the question is: I get some notifications I don't want to get. But
my question is , I want to get some short and smart ideas to
I want to create a new DbCommand, but get some errors: DbCommand insertcommand =
A file name will be passed in from standard in. I want to open

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.