この記事は会員限定です。会員登録(無料)すると全てご覧いただけます。
指定された文字列中に、特定の文字が何回出現するかをカウントしたい場合、標準ではそのようなメソッドは用意されていないが、次のようにして簡単に記述できる。
using System;
class Program {
// 文字の出現回数をカウント
public static int CountChar(string s, char c) {
return s.Length - s.Replace(c.ToString(), "").Length;
}
static void Main() {
string s = "この文字列の中の「の」の数は?";
Console.WriteLine(CountChar(s, 'の')); // 出力:5
}
}
Imports System
Class Program
' 文字の出現回数をカウント
Public Shared Function CountChar(ByVal s As String, ByVal c As Char) As Integer
Return s.Length - s.Replace(c.ToString(), "").Length
End Function
Shared Sub Main()
Dim s As String = "この文字列の中の「の」の数は?"
Console.WriteLine(CountChar(s, "の")) ' 出力:5
End Sub
End Class
Copyright© Digital Advantage Corp. All Rights Reserved.