Hi,
Anyone have an idea behind this one? I'm trying to search a string say:
branchRetrievalDetails.scheduleAtFixedRate(branchDetailsServlet,getTomorrowMorning6am(),repeat);
for something like this:
scheduleAtFixedRate(
but when I do a line =~ string comparison, I get following error:
Unmatched bracket in regex: marked by <!-- HERE in m/scheduleAtFixedRate( <-- Here at filename.pl line 132
Is it possible to delimit the string to search for it like?
string comparison =~ tr/(/\(/;
Tried this but got same error.
Any ideas?
Cheers,
Mark.
Anyone have an idea behind this one? I'm trying to search a string say:
branchRetrievalDetails.scheduleAtFixedRate(branchDetailsServlet,getTomorrowMorning6am(),repeat);
for something like this:
scheduleAtFixedRate(
but when I do a line =~ string comparison, I get following error:
Unmatched bracket in regex: marked by <!-- HERE in m/scheduleAtFixedRate( <-- Here at filename.pl line 132
Is it possible to delimit the string to search for it like?
string comparison =~ tr/(/\(/;
Tried this but got same error.
Any ideas?
Cheers,
Mark.