Answers for "search the third word in string in c#"

C#
1

search the third word in string in c#

string[] wordslist = text.Split(' ');
Console.WriteLine(wordslist[index-1]);
Posted by: Guest on December-07-2021

Code answers related to "search the third word in string in c#"

C# Answers by Framework

Browse Popular Code Answers by Language