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

The Archive Base Latest Questions

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

I trying to write – with no luck – the regex able to extract

  • 0

I trying to write – with no luck – the regex able to extract filter criteria from a string like:

String rawFilter = "field1: something field3: something else field2: any number of words";

Fields can come in any order, and I need to extract some kind of key-value pair list.

Update, as requested in comment. For what I know of regex, the first output could be an array with field names at even positions and value at odd positions. So that:

Console.WriteLine(matches[0]); //Prints field1
Console.WriteLine(matches[1]); //Prints something 
Console.WriteLine(matches[2]); //Prints field3
Console.WriteLine(matches[3]); //Prints something else
Console.WriteLine(matches[4]); //Prints field2
Console.WriteLine(matches[5]); //Prints any number of words
  • 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:13:05+00:00Added an answer on May 26, 2026 at 12:13 am

    Fieldname is in group 1 and the value is in group 2:

    Regex r = new Regex(@"(field\d:)\s*((?:(?!field).)*)");
                int i = 0;
                foreach (Match m in r.Matches("field1: something field3: something else field2: any number of words")) {
                    Console.WriteLine(++i);
                    Console.WriteLine("{0} -{1}", 1, m.Groups[1].Value);
                    Console.WriteLine("{0} -{1}", 2, m.Groups[2].Value);
                }
    

    prints:

    1
    1 -field1:
    2 - something 
    2
    1 -field3:
    2 - something else 
    3
    1 -field2:
    2 - any number of words
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im trying to write a List of 'Documents' from an XML string, but i
Trying to write a python script to extract lines from a file. The file
Trying to write a Lua script for Scite (something like lua-users wiki: Scite Comment
Im trying to write something to get my images to show correctly. I have
im trying to write an app that will display a list off lines from
I'm trying to write a regex function that will identify and replace a single
Trying to write a code that searches hash values for specific string's (input by
I'm trying write a simple perl script that reads some fields from a password
Trying to write a python application that downloads images from an RSS feed, and
Am trying to write a query that would output something similar to the last

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.