I have a long string containing Copyright: 'any length of unknown string here',
what regex should I write to exactly match this as substring in a string?  
I tried this preg_replace('/Copyright:(.*?)/', 'mytext', $str); but its not working, it only matches the Copyright:
 
     
    
 
    