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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T16:17:44+00:00 2026-05-26T16:17:44+00:00

Sorry if this isn’t Stack Overflow worthy but I’m stumped. Here is my code:

  • 0

Sorry if this isn’t Stack Overflow worthy but I’m stumped. Here is my code:

#Search tmpData for a <whack> tag and replace with REPLACEMENTSTRING (this works)
$tmpData =~ s/<\s*whack\s+([^\/>]*)(\/?>)/"$REPLACEMENTSTRING"/i;

if($defaultData ne '') {
print "pre $1 And $2... '$&'\n";

#Search for data inside <whack> tag and closing tag </whack> and remove them.
$tmpData =~ s/$defaultData<\/whack>$//;
print "FOUND $1 And $2... '$&'\n";  

For those not aware, $& shows the regex match. The problem is that the second regular expression appears to not be executing at all: the last print statement shows all the values from the first regular expression. You would expect $& would modify here. Right?

My test data is: $tmpData is: yo "WHACKREPLACEMENT-idname2"helloworld</whack>

after the first regular expression.
$defaultData is: helloworld

I tried pulling this code out from the main script into a test file that isn’t strict and it worked 🙁

What is going on?! Thanks!

EDIT
I wasn’t sure how to make this clearer so I thought I would post the output from my debugger at the point of error:

main::(c:\exec\webwhack.pl:109): $tmpData =~ s/$defaultData</whack>$//;

DB<2> p $tmpData, $defaultData

“WHACKATAG2837293REPLACEMENT-idname2″removeMe

removeMe

DB<3> n

main::(c:\exec\webwhack.pl:110): print “FOUND $1 And $2… ‘$&’\n”;

DB<3> p $tmpData, $defaultData

“WHACKATAG2837293REPLACEMENT-idname2″removeMe

removeMe

So you can see that going into the regular expression “removeMe” exists at the end of the string. Coming out of the regular expression though- it’s as if nothing changed. 🙁

EDIT2

I should also point out that all these statements are wrapped in a:

while( $tmpData =~ m/<\s*whack\s+([^\/>]*)(\/?>)/ig) { ... }

loop

  • 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-26T16:17:45+00:00Added an answer on May 26, 2026 at 4:17 pm

    Hard to say exactly with no values for $defaultData and $tmpData, but that would be what you see when your $defaultData pattern isn’t being matched in the second =~.

    After all, man perlvar says:

    $& The string matched by the last successful pattern match

    I’d structure it like this:

    #Search tmpData for a <whack> tag and replace with REPLACEMENTSTRING (this works)
    $tmpData =~ s/<\s*whack\s+([^\/>]*)(\/?>)/"$REPLACEMENTSTRING"/i;
    
    if($defaultData ne '') {
      print "pre $1 And $2... '$&'\n";
    
      #Search for data inside <whack> tag and closing tag </whack> and remove them.
      if($tmpData =~ s/$defaultData<\/whack>$//) { 
        print "FOUND $1 And $2... '$&'\n";  
      } else { 
        print "NOT FOUND";
      } 
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Sorry if this question seems trivial to many here. In a C++ code there
[I'm sorry that this isn't directly a programming question. But I have recently switched
I'm sorry if this is a re-post but no matter what search terms I
First of all, sorry if this isn't an appropriate question for StackOverflow. I've tried
Is Visual Studio 2010 RC ever going to expire? Sorry if this isn't the
Ok sorry this might seem like a dumb question but I cannot figure this
Sorry for this not being a real question, but Sometime back i remember seeing
Sorry if this sounds like a really stupid question, but I need to make
Sorry if this is a little off-topic for regular stackoverflow questions, but we're tearing
This isn't a school assignment or anything, but I realize it's a mostly academic

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.