Difference between revisions of "Testing if a character is in a word"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
Line 1: Line 1:
 +
You can use the `Contains` method of any string variable to check if part of a string(or a single character) is in the original string.
 +
 
<syntaxhighlight lang=csharp line>
 
<syntaxhighlight lang=csharp line>
 
Console.WriteLine("please enter a word:");
 
Console.WriteLine("please enter a word:");
Line 17: Line 19:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 +
==Looking for vowels==
 
<syntaxhighlight lang=csharp line>
 
<syntaxhighlight lang=csharp line>
 
Console.WriteLine("please enter a word:");
 
Console.WriteLine("please enter a word:");

Revision as of 12:04, 15 June 2023

You can use the `Contains` method of any string variable to check if part of a string(or a single character) is in the original string.

 1 Console.WriteLine("please enter a word:");
 2 string word = Console.ReadLine();
 3 Console.WriteLine("please enter part of the word:");
 4 string part  = Console.ReadLine();
 5 
 6 if(word.Contains(part))
 7 {
 8 	Console.WriteLine("Part found");
 9 }
10 else
11 {
12 	Console.WriteLine("Part not found: ");
13 }
14 
15 Console.ReadLine();

Looking for vowels

 1 Console.WriteLine("please enter a word:");
 2 string word = Console.ReadLine();
 3 string vowels = "aeiou";
 4 		
 5 foreach(char c in word)
 6 {
 7 	if(vowels.Contains(c.ToString()))
 8 	{
 9 		Console.WriteLine("Vowel found: "+c);
10 	}
11 }
12 	
13 Console.ReadLine();