Greetings,
What function can extract a string from another one?
I have the string "ABABA [FUNC:variable text] ABABA [FUNC:variable text]".
I need to extract the text "variable text". Since "variable text" is variable, I can't use the regular string functions. I need somthing with regex, that will use the pattern :'[FUNC:.*]'
I am sure there is a generic function in php, I just can't find it.
Help?