Sublime Text Trick
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*\)
ที่มา: