Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

regex to end with python

import re

str = 'Python is a programming language'
#search using regex
x = re.search('language$', str)
Source by pythonexamples.org #
 
PREVIOUS NEXT
Tagged: #regex #python
ADD COMMENT
Topic
Name
5+3 =