Sir/Madam,
How to split more than one word from sentence.for example if i have the sentence like "The King of India " here i need the result as "King India" , i want to remove the words "The" and "of" from the sentence.
With Regards,
Gomathi.P
Loading

Manikavelu VelayuthamPosted Sep 24, 2010, 1:48 AM
string str;
str.Split(" ");
Store the resultant value in a Array.
From that array you need to remove the verbs by check conditions.
if (array.contains(str[0]))
{
....
}