hey guys i have an array of strings that i need to split into 2 different string.
Code:
string title = "  "Rebecca"  "Alfred Hitchcock" ";

so far all the data is in one string called title
//need to break them into 2 strings, title and director
// title should contain = Rebecca
// director should contain alfred hitchcock
please help, which string fuctions can i use to split these 2 and remove the quotes???