mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
8 lines
177 B
Python
8 lines
177 B
Python
import re
|
|
|
|
|
|
def test(string):
|
|
return bool(re.match(r'\ntest command\n(.|\s)*\nsome command\n', string))
|
|
|
|
print(test('test command tpgm4tigm4tigmt\n i0hhmi6h some command'))
|