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

  • Home
  • SEARCH
  • 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 6648295
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:38:20+00:00 2026-05-26T00:38:20+00:00

I need help creating a regular expression that will parse the following string :

  • 0

I need help creating a regular expression that will parse the following string :

09-22-11 12:58:40       SEVERE       ...ractBlobAodCommand:104           -   IllegalStateException: version:1316719189017 not found in recent history                             Dump: /data1/aafghani/dev/devamir/logs/dumps/22i125840.dump

The most difficult part for me is parsing out the date. I’m not really an expert on Java regular expressions – 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-26T00:38:20+00:00Added an answer on May 26, 2026 at 12:38 am

    The question is a bit misleading as it implies the need to
    parse the date into java.util.Date object or similar. The real
    question is how to split up the input data into the desired fields:

    • date
    • level
    • location name & line
    • exception name & message
    • dump file

    This is one solution using a regular expression.

    String pattern = "^(\\d{2}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2})" // date
        + "[ ]+(SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST)" // level
        + "[ ]+([^:]+):(\\d+)" // location name, location line
        + "[ ]+-[ ]+([^:]+): (.*?)" // exception name, exception message
        + "[ ]+Dump: ([a-zA-Z0-9\\./]+)" // dump
        + "$";
    
    Pattern regex = Pattern.compile(pattern);
    String input = "09-22-11 12:58:40       SEVERE       ...ractBlobAodCommand:104           -   IllegalStateException: version:1316719189017 not found in recent history                             Dump: /data1/aafghani/dev/devamir/logs/dumps/22i125840.dump";
    Matcher m = regex.matcher(input);
    assertTrue(m.matches());
    assertSame(7, m.groupCount());
    for (int i = 1; i <= m.groupCount(); i++) {
      System.out.format("[%d] \"%s\"%n", i, m.group(i));
    }
    

    Output

    [1] "09-22-11 12:58:40"
    [2] "SEVERE"
    [3] "...ractBlobAodCommand"
    [4] "104"
    [5] "IllegalStateException"
    [6] "version:1316719189017 not found in recent history"
    [7] "/data1/aafghani/dev/devamir/logs/dumps/22i125840.dump"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am looking for some help on creating a regular expression that would work
Ok need some help, I have a system I'm creating that will allow users
Having some problems with creating regular expression with subpatterns on php. Need some help.
I need help creating a method that allows me to create a bunch of
I need help creating a self extracting zip file that does not display anything.
I need help creating a .dll file from a custom control so that it
Need some help for creating a File and String search engine. The program needs
I need help creating a batch file that first runs a command on every
i need help creating a count down timer in php. the problem is that
I need help on this following aspx code aspx Code: <asp:Label ID =lblName runat

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.