Given two specific strings, all I want to do is grab what's between them from one huge string.
If the two strings are
Code: Select all
<div class=dditd id=dditd><div><b>Code: Select all
 mi</b>Code: Select all
rge5g55gdgrdfgdg<div class=dditd id=dditd><div><b>this is what i want mi</b>55g45txdggdh54y4hh45Code: Select all
this is what i wantCode: Select all
(<div class=dditd id=dditd><div><b>)(.*?)( mi</b>)Code: Select all
$^(<div class=dditd id=dditd><div><b>)(.*?)( mi</b>)$Can someone point me in the right direction with the expression I need?