Accessing each character of a string

From TRCCompSci - AQA Computer Science
Revision as of 08:31, 15 June 2023 by Admin (talk | contribs)
Jump to: navigation, search

Accessing the individual characters of a string is a common part of any Section B question. This page looks at the different methods you can use to achieve this.

Method 1

1 Console.WriteLine("please enter a word:");
2 string word = Console.ReadLine();
3 		
4 for(int i=0; i < word.Length;i++)
5 {
6 	Console.WriteLine(word[i]);
7 }
8 	
9 Console.ReadLine();