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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T21:20:30+00:00 2026-06-16T21:20:30+00:00

I need an equivalent to C’s vsscanf() in Java. More detailled, I have this

  • 0

I need an equivalent to C’s vsscanf() in Java. More detailled, I have this here:

private void parseString(String parseMe, String format, Object[] args) {
    // something like: vsscanf(parseMe, format, args);
}

Note that I have indeed read about an equivalent for sscanf(), so it could be done easily from there. But I ask myself whether there is a more elegant solution than filling args with a for loop.

Also, it would be nice if the solution allows using varargs instead of an array, too. See below.

parseString(str, format, x, y, z);
  • 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-16T21:20:31+00:00Added an answer on June 16, 2026 at 9:20 pm

    You can use java.text.MessageFormat. For example:

    public static void main(String[] args) throws ParseException {
        String input="hello 1:2.3.4";
        MessageFormat form = new MessageFormat("{0} {1,number}:{2,number,integer}.{3,number}");
        Object[] data = form.parse(input);
        for(Object o : data) {
            System.out.println(o.getClass()+" : "+o.toString());
        }
    }
    

    Which produces the output:

    class java.lang.String : hello
    class java.lang.Long : 1
    class java.lang.Long : 2
    class java.lang.Double : 3.4
    

    Of course, the format isn’t as compact as that used by scanf, but it is out of the box Java.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need C# equivalent to Java’s continue ? i have for (String b :
Hi guys I need the equivalent java code of this PHP code: <?php $stack
I'm not sure where this is handled. I need the equivalent of PHP's set_time_limit(seconds)
I am unfamiliar with Oracle and i need to have equivalent of my script
I currently have a class where I need accomplish the equivalent of the following
I need to convert a python code into an equivalent java code. Python makes
I need the equivalent of this SQL statement in Linq, using method/fluent syntax. SELECT
Need this equivalent outcome on PostgreSQL on this MySQL query . select id, 'ID1'
I can easily do this in C#...but I need the equivalent in VB.Net. I
Specifically I need the equivalent selector for this, which worked in Prototype 1.5.0: //for

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.