Feb 8, 2005 #1 o1568501 Programmer Feb 8, 2005 14 GB Hi, Does anyone know how to get the integer position of a word in a stirng of text using c#? Many thanks
Hi, Does anyone know how to get the integer position of a word in a stirng of text using c#? Many thanks
Feb 8, 2005 1 #2 Smeat Programmer Mar 27, 2004 193 GB Code: string a = "myword"; int i = a.IndexOf("word"); Upvote 0 Downvote