我最近一直在努力解决不允许我从左到右书写的问题,而是从右到左书写。有人知道如何解决吗?
string originalText;
private string replaceToStars(object sender)
{
if (sender == textBox3)
{
originalText = textBox3.Text;
string replaced = Regex.Replace(originalText, @"[a-z0-9A-Z]", "*");
textBox3.Text = replaced;
}
else if (sender == textBox3)
{
textBox3.Text = originalText;
}
return textBox3.Text;
}
答案 0 :(得分:0)
我的信誉不足,无法在评论中添加此信息。因此,将此信息发布在答案中。
就这么简单,希望对您有帮助...