ตั้งค่าสตริงก่อน -
string str = "Hello World! Hello!";
ตอนนี้ตรวจสอบสตริงสำหรับคำว่า "สวัสดี" และวนซ้ำ -
while ((a = str1.IndexOf(pattern, a)) != -1) { a += pattern.Length; count++; }
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อนับจำนวนคำที่เกิดขึ้นในสตริง
using System; class Program { static void Main() { string str = "Hello World! Hello!"; Console.WriteLine("Occurrence:"+Check.CheckOccurrences(str, "Hello")); } } public static class Check { public static int CheckOccurrences(string str1, string pattern) { int count = 0; int a = 0; while ((a = str1.IndexOf(pattern, a)) != -1) { a += pattern.Length; count++; } return count; } }
ผลลัพธ์
Occurrence:2