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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:00:07+00:00 2026-05-26T11:00:07+00:00

How would I detect if a string contained for instance my first name but

  • 0

How would I detect if a string contained for instance my first name but not my last name using only a regular expression?

  • 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-26T11:00:08+00:00Added an answer on May 26, 2026 at 11:00 am

    The easiest way to use regular expressions for this is to use simple regexes and logical connectives. Since you only want simple matches and since you didn’t list a language, here is a basic implementation in Perl:

    my $str1="firstname lastname blah blah blah";
    my $str2="blurg firstname etc";
    
    foreach($str1,$str2)
    {
      if(/firstname/ and !/lastname/)
      {
        print "$_ matched firstname and not lastname!\n";
      }
      else
      {
        print "No match for $_\n";
      }
    }
    

    As expected, the output is:

    No match for firstname lastname blah blah blah
    blurg firstname etc matched firstname and not lastname!
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to find a regular expression (regex) that does detect if you
Using OpenGL /GLUT how would I detect if two keys, say 'a' and 'j'
Using winforms in vs2008. I have a DataGridView and I would like to detect
Apparently this problem comes up fairly often, after reading Regular expression to detect semi-colon
I am curious if you have a string how would you detect the delimiter?
How would I detect a long tap (tap and hold) within a UIScrollView?
With /bin/bash , how would I detect if a user has a specific directory
I would like to detect whether the OS I'm compiling on is Windows. Is
I would like to detect when a page load request give to a UIWebView
I would like to detect the following sequences: a aA aAa aAaA ... where

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.