Say I have this string: fg_^"-kv:("value_i_want")frt. That string will stay constant except for value_i_want - which could change all the time. This little string is hidden within a huge string of data (constantly changing), I have saved in a PHP variable
Is there any I could do a Regular Expression on a string, let's say of 50000 characters to find that string (above) without knowing what the value_i_want is, and then saving the value in a variable - using PHP


/fg_\^"\-kv:\("(.*?)"\)frt/s.fg_^"-kv:("......")frtis a sub string of a 5000 word paragraph?