gpt4 book ai didi

c# - c#中连字符的不间断字符是什么?

转载 作者:行者123 更新时间:2023-12-03 12:48:36 24 4
gpt4 key购买 nike

我使用“\u00A0”将空格替换为不间断空格。我需要相同的连字符(破折号)。 c# 中最好的解决方案是什么?

我尝试添加建议的字符,但是“?”出现而不是“-”。在调试中,我可以在转换过程中看到“-”,但最终是“?”。

我在其他帖子中发现不是实际破折号的“-”可能会导致“?”而不是破折号! ( Post regarding "-" and "?" ) 我需要一个解决方案,因为我需要一个不间断的破折号......

public void SetText(string text)
{
if (Mode == ControlMode.DesignTime)
{
string textToUse = string.Empty;
string offlineScreenText = text;
if (offlineScreenText != null)
{
int lblLen = Math.Min(Convert.ToInt32(_settings.MultilineLength), offlineScreenText.Length);
textToUse = lblLen > 0 ? offlineScreenText.Substring(0, lblLen) : offlineScreenText;
}

_textBox.Text = textToUse;
}
else
{
if (!VerifyNumericValidity(text))
{
return;
}

_lastValue = text;

// if there's a length limit, apply it to _lastValue
ApplyLengthLimit();

if (text.Length > _textBox.MaxLength)
{
text = text.Substring(0, _textBox.MaxLength);
}

// Convertion to whitespaces in order to ignore the difference
// between non-breakable space ("\u00A0") and whitespaces (" ")
string whitespacesText = text.Replace(" ", "\u00A0");
whitespacesText = text.Replace("-", "\u2011");
if (!whitespacesText.Equals(_textBox.Text) && !whitespacesText.Equals(_textBox.Text.TrimEnd()))
{
_textBox.Text = text;
}
}
}

void _textBox_TextChanged(object sender, TextChangedEventArgs e)
{
int origCursorLocation = _textBox.SelectionStart;

// Simple whitespeces aren't being wrapped normally,
// so we'll replace them with non-breakable spaces
_textBox.Text = _textBox.Text.Replace(" ", "\u00A0");
_textBox.Text = _textBox.Text.Replace("-", "\u2011");

BindingLayer.RaisePresentationChanged(DependencyPropertyType.Text, _textBox.Text);

_textBox.SelectionStart = origCursorLocation;
}

最佳答案

这应该是您需要的连字符

"\u2011"

这里有一个特殊字符列表:http://wiki.mobileread.com/wiki/Special_characters

关于c# - c#中连字符的不间断字符是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37569669/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com