Regular Expressions 101

Community Patterns

find code block in md file

0

Regular Expression
PCRE (PHP <7.3)

/
(?:\n|\A)[ ]* # 1: Opening marker ( [ ]{0,2}(?:~{3,}|`{3,}) # 3 or more tildes/backticks. ) [ ]* (?: \.?([\w-_:\.\/\{\+\},\@]+) # 2: standalone class name | \{((?:[ ]*[#.][-_:a-zA-Z0-9]+){1,})[ ]*\} # 3: Extra attributes )? [ ]* \n # Whitespace and newline following marker. # 4: Content ( (?> (?!\1 [ ]* \n) # Not a closing marker. .*\n+ )+ ) # Closing marker. \1 [ ]* (?= \n )
/
mxg

Description

no description available

Submitted by anonymous - 5 years ago