How do I split a string at word not at a char, Like I want to split this string into an array of strings:
Hello /*End*/ World /*End*/ Bye /*End*/ live /*End*/
I want to split at /*End*/
so the array will be like this 
{Hello,World,Bye,live}
Any suggestions?
 
     
     
     
     
     
     
    