Answers for "labview regex multiple lines"

0

labview regex multiple lines

# will match the lines that contains start-text and end-text and any line in between (up until 20)
.*start-text.*((?:.*\n){1,20}).*end-text.*
# If more than 20 lines, there won't be a match
Posted by: Guest on May-04-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language