Topic List

Submitted by Little Bear on 3 เม.ย. 65 23:53

Regex find

Multi Line Search, eg. call function with multiline parameter

(?s)inlineEdit((.?))
(?s)new Form\((.?)Object \[

  • (?s) causes the dot to also include newlines

Not contain some word : have word new Form( and not follow with [

new Form((?![)

Comma after last function parameter

,\s*\)

ที่มา: