xcaliber13 Posted June 28, 2016 Share Posted June 28, 2016 Hey Guys, Could I get a little help with this search. I have been stuck trying to figure this out. $aResults = StringRegExp($sFile, "(?m)^\bName\b.*", 3) This works to get the whole line that begins with Name. But how would I modify this to also get the next two lines? Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted June 28, 2016 Moderators Share Posted June 28, 2016 xcaliber13, This seems to work: $sText = "blah blah" & @CRLF & _ "Name" & @CRLF & _ "Line 1" & @CRLF & _ "line 2" & @CRLF & _ "blah blah" $aExtract = StringRegExp($sText, "(?i)(NAME.*\R.*\R.*)\R", 3) ConsoleWrite($aExtract[0] & @CRLF) M23 Skysnake 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
xcaliber13 Posted June 28, 2016 Author Share Posted June 28, 2016 Melba23, Yes indeed that works. Thank you very much. Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted June 28, 2016 Moderators Share Posted June 28, 2016 xcaliber13, My pleasure as always. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Skysnake Posted July 1, 2016 Share Posted July 1, 2016 @Melba23 very clever. I had to do something like that and simple grabbed the next two lines after every 'name' - It never occurred to me to include it in the regex... Skysnake Why is the snake in the sky? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now