Regular expressions

Seymore4Head Seymore4Head at Hotmail.invalid
Mon Nov 2 22:17:59 EST 2015


On Tue, 3 Nov 2015 01:19:34 +0000, MRAB <python at mrabarnett.plus.com>
wrote:

>On 2015-11-03 01:09, Seymore4Head wrote:
>> How do I make a regular expression that returns true if the end of the
>> line is an asterisk
>>
>To match an asterisk: \*
>
>To match the end of a line: $
>
>To match an asterisk at the end of a line: \*$

Thanks



More information about the Python-list mailing list