excel - How to remove or replace brackets in a string? -


my $book = spreadsheet::read->new(); $book = readdata  ('d:\profiles\jmahroof\desktop\scheduled_build_overview.xls'); $cell = "cd7"; $n = "1"; $send = $book->[$n]{$cell}; 

the above code gets data spreadsheet, prints content of cell know has text in. has text of following format: text(text)

i need replace open bracket empty space , need remove close bracket. have tried below code substitute open bracket empty space not seem work.

$send =~ s/(/ /g; print $send; 

the bracket seen part of code, escape it.

$send =~ s/\(/ /; print $send; 

Comments

Popular posts from this blog

Command prompt result in label. Python 2.7 -

javascript - How do I use URL parameters to change link href on page? -

amazon web services - AWS Route53 Trying To Get Site To Resolve To www -