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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T01:41:16+00:00 2026-05-22T01:41:16+00:00

i want to match stackover stored in a variable x in stackoverflow, using perl

  • 0

i want to match “stackover” stored in a variable x in “stackoverflow”,

using perl i can do this as follows;

$x = "stackover";
$y = "stackoverflow";
if ($y =~ /^$x/){
    print "success";
}

how do i do this in python,
i cannot have x variable in the regex

reg = re.compile("x")  # this will match x instead of matching stackover

thanks

  • 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-22T01:41:17+00:00Added an answer on May 22, 2026 at 1:41 am
    >>> y = 'stackoverflow'
    >>> x = 'stackover'
    >>> if re.match('^%s' % x, y):
    ...     print "success"
    ... 
    success
    

    Or

    >>> if re.match('^{0}'.format(x), y):
    ...     print "success"
    ... 
    success
    

    Strictly speaking, '^' is unnecessary when using .match(), which always seeks a match at the beginning of the string. But I’m leaving it in as a placeholder for other, more complicated regexes.

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

Sidebar

Related Questions

I want to match a URL link in a wall post and replace this
I want to match this line, <center>'''<font color=blue><font size=18.0pt>No Change Alarms Help &amp; Information</font></font>'''</center>
I want to match this line, <center>'''<font color=blue><font size=18.0pt>No Change Alarms Help &amp; Information</font></font>'''</center>
I want to match 1234 5678 or 12345678 Is this regular expression wrong? if(!number.matches(^\\d{4}[,
I want to match certain symbols only when they are not prefixed by specific
I want to match regexes (at least the basic ones, not all their possible
I want to match the first character AFTER a hyphen. See below. Language: PHP
I want to match words that contain special characters or that begin with 'http://'
How can I allow single hyphens and single spaces only within words but not
i have a document and i want copy group. start document and end document

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.