如何检查字符串中的第一个字符是否是项目符号(ASCII中不存在)

时间:2018-04-14 02:39:56

标签: c#

我想检查c#中字符串中的第一个字符是否为我该怎么做,因为它没有ASCII值?

2 个答案:

答案 0 :(得分:2)

有一些不同的unicode字符可能看起来像子弹。

  1. 使用https://unicodelookup.com查找您要匹配的代码。
  2. 使用literal notation在C#中指定unicode字符,例如:“\ u2022”使用字符的十六进制unicode。
  3. 例如:

    bool found = text.StartsWith("\u2022");
    

答案 1 :(得分:1)

if (inputString.First() == '•') Console.WriteLine("True.");