RegEx using m, multi-line strings
Posted: 16.07.2022 10:50
How can I aktivate the flag Multiline in Regex
For example I search for
(.){40,}
(.){120,}
I wanted to search for some characters in the first line and remaining characters of the next line.
https://regex.sorokin.engineer/en/lates ... sions.html
m, multi-line strings
I tried without luck:
(.){40,}/m
m)(.){40,}
For example I search for
(.){40,}
(.){120,}
I wanted to search for some characters in the first line and remaining characters of the next line.
https://regex.sorokin.engineer/en/lates ... sions.html
m, multi-line strings
I tried without luck:
(.){40,}/m
m)(.){40,}