I want to remove a word in the string thats like this below
haskhdjasgd
Total Marks : 20
in this i need to remove Total Marks : 20 this marks that numeric value and what ever mentioned : thats not a common word it may vary common word is total marks how can we go for this
arrayVar = yourStringVar.Split(Environment.NewLine.ToCharArray)
now use message box like this arrayVar(0) you’ll get the output as jhgaskgd
Cheers @Shriharsha_H_N