Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. d{2}/d{1,2}/d{4}$
  2.  
  3. ([1-3]?d/.+?/d{4})
  4.  
  5. # coding=utf8
  6. # the above tag defines encoding for this document and is for Python 2.x compatibility
  7.  
  8. import re
  9.  
  10. regex = r"([1-3]?d/.+?/d{4})"
  11.  
  12. test_str = ("$83,00010/7/2016 ----> 10/7/2016 is the date here,n"
  13. "$721,0002/7/2015 ----> 2/7/2015 is the date here,n"
  14. "$3,00012/12/2015 -----> 12/12/2015 is the date here")
  15.  
  16. matches = re.finditer(regex, test_str, re.MULTILINE)
  17.  
  18. for matchNum, match in enumerate(matches, start=1):
  19.  
  20. print ("Match {matchNum} was found at {start}-{end}: {match}".format(matchNum = matchNum, start = match.start(), end = match.end(), match = match.group()))
  21.  
  22. for groupNum in range(0, len(match.groups())):
  23. groupNum = groupNum + 1
  24.  
  25. print ("Group {groupNum} found at {start}-{end}: {group}".format(groupNum = groupNum, start = match.start(groupNum), end = match.end(groupNum), group = match.group(groupNum)))
  26.  
  27. # Note: for Python 2.7 compatibility, use ur"" to prefix the regex and u"" to prefix the test string and substitution.
  28.  
  29. (?:1[0-2]|[0-9])/[0-9]{2}/[0-9]{4}$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement