Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
OneLineCode solution in Clear category for Unix Match. Part 1 by alterGNU
import re
unix_match = lambda f,p:bool(re.search(p.translate(str.maketrans({"*":"\S*","?":"\S",".":"\."})),f))
June 6, 2021
Comments: