I really need it ASAP. Please help me.
<%
sentence = "My Mail Has Been Deleted"
%>
Now i want to make three pieces of this sentence and... want it like this
<%
variable1 = "MY"
variable2 = "Mail"
Variable3 = "Has Been Deleted"
%>
Note:
All the sentences, i want to edit contains this word "Mail" and i want to break the sentence from where "Mail" Starts and third pieace of the sentence should start with where the "Mail" ends.
One more example (just to explain clearly what i want)
<%
setence "His Mail is Rubbish"
%>
It should be like this
<%
variable1 = "His"
variable2 = "Mail"
variable3 = "Is Rubbish"
%>
Please help. Thank you.