Edit: Clarification, I am using Sublime text. It appears the problem was in fact the multiline issue. Thank you all for your feedback!
Okay so I'm trying to analyze text blocks similar to this:
Private Sub NAV_VE124_Click()
'Open the picture in its description field
Call ShowPic(Me.NAV_VE124.Description)
End Sub
and the regex pattern (?<=Private Sub )((.*?)(?=_Click))
seems to work to locate NAV_VE124
and yet for some reason (?<=\')((.*?)(?=End))
Does not produce any result...
Also, I would like to combine these two searches so that I only grab the stuff after '
if the other condition is allowed, so any thoughts on how to do that would also be phenomenal.