RegEx variable isolation

C

coffeevictim

Hi,

I have an incorrect regex which seeks to add a column to a CSV file.
The new column always contains a "1" and is always the second to
last column.

My problem is that I don't know how to isolate the $1 from the 1 that
follows it so in my attempt it just looks like $11. Can anyone help?

$SOURCELINE =~ s/(.*,)$2/$11,$2/;

Thanks

coffeevictim
 
M

Mirco Wahab

coffeevictim said:
My problem is that I don't know how to isolate the $1 from the 1 that
follows it so in my attempt it just looks like $11. Can anyone help?

$SOURCELINE =~ s/(.*,)$2/$11,$2/;

$SOURCELINE =~ s/(.*,)/${1}1,/;

Regards

M.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,482
Members
44,901
Latest member
Noble71S45

Latest Threads

Top