C#
 Computer >> コンピューター >  >> プログラミング >> C#

指定された文字列の値をC#の同等のUnicode文字に変換します


指定された文字列の値を同等のUnicode文字に変換するには、コードは次のとおりです-

using System;
public class Demo {
   public static void Main(){
      bool res;
      Char ch;
      res = Char.TryParse("10", out ch);
      Console.WriteLine(res);
      Console.WriteLine(ch.ToString());
   }
}

出力

これにより、次の出力が生成されます-

False

別の例を見てみましょう-

using System;
public class Demo {
   public static void Main(){
      bool res;
      Char ch;
      res = Char.TryParse("P", out ch);
      Console.WriteLine(res);
      Console.WriteLine(ch.ToString());
   }
}

出力

これにより、次の出力が生成されます-

True
P

  1. C#で文字列の最初の文字を見つける方法は?

    最初の文字を取得するには、substring()メソッドを使用します。 次の文字列を考えてみましょう- string str = "Welcome to the Planet!"; ここで最初の文字を取得するには、substring()メソッドで値1を設定します。 string res = str.Substring(0, 1); 完全なコードを見てみましょう- 例 using System; public class Demo {    public static void Main() {       string

  2. 各文字の出現回数をカウントするC#プログラム

    まず、文字列を設定します- string str = "Website"; Console.WriteLine("String: "+str); 文字列内のすべての文字をチェックし、その文字の出現回数をカウントする変数をインクリメントします- for (int j = 0; j < str.Length; j++) {    if (str[0] == str[j]) {       cal++;    } } 例 次のコードを実行して、各文字の出現回数を数えることができます。