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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:30:20+00:00 2026-05-23T20:30:20+00:00

I need a regex for parsing key-value-pairs from a properties-file to write them into

  • 0

I need a regex for parsing key-value-pairs from a properties-file to write them into a database. The application is written in java. As I need to store information about comment-lines and empty lines, properties.load does not work for me

Key is everything until the first appearance of an unescaped whitespace or an equals sign (including escaped whitespaces).
Value is everything until end of line, but can also be empty.

It has to match the following cases:

  • key=value
  • key value
  • key=value value
  • key
  • key value value
  • key\ key\ key=value
  • key\ key\ key value

I tried the following regex, but it does not seperate the last two cases correctly:

^(\\\s|[^\s=]+)+[\s|=](.*)?$

For the last two examples I get on Rubular:

1. key\
2. key\ key value

instead of

1. key\ key\ key
2. value

I also tried this, but it does not work for me, too

Thanks in advance for help!

  • 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-23T20:30:21+00:00Added an answer on May 23, 2026 at 8:30 pm

    You want to use a negative lookbehind (?<!\\\\)\s when checking your space

    ^((.*?)((?<!\\\\)\\s|=)(.*?)|(\\w+))$
    

    Breaking it down

    (.*?)             Match everything non greedy up to the next match
    ((?<!\\\\)\\s|=)  Match witespace not preceded by \\
    (.*?)             Again match everything non greedy up to the next match
    |\\w+             Or match strings with no whitespace - this captures case 3 with no value
    

    Each case tested with the tool here http://www.cis.upenn.edu/~matuszek/General/RegexTester/regex-tester.html

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

Sidebar

Related Questions

I`m parsing SQL query with C# Regex. I need also to make my pattern
I need a regex that will parse a csv-style file, something like 57 fields
I'm writing a node.js application where I need to do a lot of parsing
I'm parsing command sequence strings and need to convert each string into a string[]
I'm currently working with parsing some data from SQL Server and I'm in need
Possible Duplicate: What is the ultimate postal code and zip regex? I need Regex
I need a regex that will ensure the the user input looks like this
I need a Regex that will match a java method declaration. I have come
I need a regex that matches all strings ending in .cs, but if they
I need a regex for the following pattern: Total of 5 characters (alpha and

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.