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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T13:29:27+00:00 2026-05-10T13:29:27+00:00

Here’s a problem I ran into recently. I have attributes strings of the form

  • 0

Here’s a problem I ran into recently. I have attributes strings of the form

'x=1 and y=abc and z=c4g and ...' 

Some attributes have numeric values, some have alpha values, some have mixed, some have dates, etc.

Every string is supposed to have ‘x=someval and y=anotherval‘ at the beginning, but some don’t. I have three things I need to do.

  1. Validate the strings to be certain that they have x and y.
  2. Actually parse the values for x and y.
  3. Get the rest of the string.

Given the example at the top, this would result in the following variables:

$x = 1; $y = 'abc'; $remainder = 'z=c4g and ...' 

My question is: Is there a (reasonably) simple way to parse these and validate with a single regular expression? i.e.:

if ($str =~ /someexpression/) {     $x = $1;     $y = $2;     $remainder = $3; } 

Note that the string may consist of only x and y attributes. This is a valid string.

I’ll post my solution as an answer, but it doesn’t meet my single-regex preference.

  • 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. 2026-05-10T13:29:27+00:00Added an answer on May 10, 2026 at 1:29 pm

    I’m not the best at regular expressions, but this seems pretty close to what you’re looking for:

    /x=(.+) and y=([^ ]+)( and (.*))?/ 

    Except you use $1, $2, and $4. In use:

    my @strs = ('x=1 and y=abc and z=c4g and w=v4l',             'x=yes and y=no',             'z=nox and w=noy');  foreach (@strs) {     if ($_ =~ /x=(.+) and y=([^ ]+)( and (.*))?/) {         $x = $1;         $y = $2;         $remainder = $4;         print 'x: $x; y: $y; remainder: $remainder\n';     } else {         print 'Failed.\n';     } } 

    Output:

    x: 1; y: abc; remainder: z=c4g and w=v4l x: yes; y: no; remainder:  Failed. 

    This of course leaves out plenty of error checking, and I don’t know everything about your inputs, but this seems to work.

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

Sidebar

Ask A Question

Stats

  • Questions 64k
  • Answers 64k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer A typical problem of this approach is that the file… May 11, 2026 at 10:54 am
  • added an answer Thanks for the suggestions. I tried the Gimp approach first… May 11, 2026 at 10:54 am
  • added an answer NSCoding will do exactly what you want. I recommend you… May 11, 2026 at 10:54 am

Related Questions

Here's a basic regex technique that I've never managed to remember. Let's say I'm
Here's a problem I ran into recently. I have attributes strings of the form
Here is the issue I am having: I have a large query that needs
Here's my scenario - I have an SSIS job that depends on another prior
Here is a simplification of my database: Table: Property Fields: ID, Address Table: Quote
Here is my code, which takes two version identifiers in the form 1, 5,
Here's a coding problem for those that like this kind of thing. Let's see
Here is the scenario: I'm writing an app that will watch for any changes
Here's an interesting problem. On a recently installed Server 2008 64bit I opened IE
Here we go again, the old argument still arises... Would we better have a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.