B
Brendon Caligari
I cannot understand what i'm doing wrong but my script fails to compile
("panic: end_shift");
$SMContents =~ m/^User data: '(.{$SMMessageLength})'$/ms
The following two alternatives work well
$SMContents =~ m/^User data: '(.{18})'$/ms
$SMContents =~ m/^User data: '(.{$SMMessageLength})'/ms
B.
("panic: end_shift");
$SMContents =~ m/^User data: '(.{$SMMessageLength})'$/ms
The following two alternatives work well
$SMContents =~ m/^User data: '(.{18})'$/ms
$SMContents =~ m/^User data: '(.{$SMMessageLength})'/ms
B.