Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Substitutions Within Substitutions

by BrowserUk (Patriarch)
on May 02, 2006 at 22:43 UTC ( [id://547007]=note: print w/replies, xml ) Need Help??


in reply to Substitutions Within Substitutions

This* seems to work:

#! perl -slw use strict; local $/ = ''; # paragraph mode while( my $clause = <DATA> ) { $clause =~ s[ ( create \s+ table \s+ \S+ \s+ \( ) ( .+ ) ( \) \s* )$ ]{ my( $x, $y, $z ) = ( $1, $2, $3 ); $y =~ s[(?<!null)(,|\Z)][ not null$1 ]g; "$x$y$z"; }esx; print $clause; } __DATA__ create table foo ( somevar1 sometype, somevar2 sometype null, somevar3 sometype not null, somevar4 sometype(20), somevar5 sometype(20) null, somevar6 sometype(10)) create table foo ( somevar1 sometype , somevar2 sometype null , somevar3 sometype not null, somevar4 sometype (20), somevar5 sometype(20) null, somevar6 sometype(10 )) create table foo ( somevar1 sometype, somevar2 sometype null, somevar3 sometype not null, somevar4 sometype(20), somevar5 sometype(20) null, somevar6 sometype(10))

Produces

C:\test>junk3 create table foo ( somevar1 sometype not null, somevar2 sometype null, somevar3 sometype not null, somevar4 sometype(20) not null, somevar5 sometype(20) null, somevar6 sometype(10) not null ) create table foo ( somevar1 sometype not null, somevar2 sometype null not null, somevar3 sometype not null, somevar4 sometype (20) not null, somevar5 sometype(20) null, somevar6 sometype(10 ) not null ) create table foo ( somevar1 sometype not null, somevar2 sometype null +, somevar3 sometype not null, somevar4 sometype(20) not null, somevar5 sometype( +20) null, somevar6 sometype(10) not null )

*Note: I've use a simplified regex to demostrate the nested substitution technique. You will probably need to improve it match SQl syntax.


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
Lingua non convalesco, consenesco et abolesco. -- Rule 1 has a caveat! -- Who broke the cabal?
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://547007]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2025-06-14 14:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.