我想验证文本框中的字符串值。
验证要求是:
- 正好2个字符
- 仅十六进制字符
我怎样才能做到这一点?
使用带有表达式的 Regex 验证器控件:^[0-9A-F]{2}$
您可以使用正则表达式,例如:
^([0-9A-F]{2})$
String^ temp = "012345679abcdefABCDEF";
if (temp->IndexOf(e->KeyChar) == -1)
{
e->Handled = true;
}
use this for hex character control
//Use this method and before calling it ..pass or parse out the string.Substring(0,2)
public string ConvertToHex(string asciiString)
{
var newasciiString = Substring(asciiString,0,2);
string hex = "";
foreach (char c in newasciiString)
{
int tmp = c;
hex += String.Format("{0:x2}", (uint)System.Convert.ToUInt32(tmp.ToString()));
}
return hex;
}