Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这让我很沮丧。我有一个字符串,里面有两个枕头。看起来我不能在这里放枕头,所以这是它的图像:
如何从名为 NameOfUser 的字符串中解析出 pilcrows?我努力了:
NameOfUser.IndexOf(Chr(182))
但这不起作用,返回-1。我还尝试复制和粘贴 pilcrow 以将其作为参数传递,但它不允许在 Visual Studio 中使用该字符。所以我在这里不知所措,如果有人可以帮助我。我觉得它必须是我缺少的简单语法。
谢谢,贾斯汀
尝试ALT + 0182在 Visual Studio 代码编辑器中的字符串值中使用 right 。看看这是否有所作为。还要检查特定索引处字符的整数 Unicode 值。
ALT + 0182
你可以复制粘贴pilcrow。这对我有用:
NameOfUser.IndexOf("¶"c)
或使用以下ChrW功能:
ChrW
NameOfUser.IndexOf(ChrW(182))