Код: Выделить всё
my $content = 'ERROR 502Bad GatewayWe could not establish a connection.';
if($content =~ /(.*)/) {
print "$1\n";
}
Код: Выделить всё
ERROR 502
Код: Выделить всё
content = 'ERROR 502Bad GatewayWe could not establish a connection.'
regex = re.compile(r'(.*)')
match = regex.match(content)
print(f'match: {match}')
if match:
print({match.group(1)})
Код: Выделить всё
match: None
Подробнее здесь: https://stackoverflow.com/questions/791 ... -in-python