问题描述
string input = textbox1.Text;
Dictionary< string,string> map = new 字典< string,string>();
map.Add( AB, x);
map.Add( Ab, z);
map.Add( aB, p);
string temp = input;
foreach ( var 条目 map)
{
string key = entry.Key;
string value = entry.Value;
temp = Regex.Replace(temp,key,match = >
{
bool isUpper = char .IsUpper(match.Value [ 0 ]);
char [] result = value .ToCharArray();
结果[ 0 ] = isUpper
? char .ToUpper(result [ 0 ])
: char .ToLower(结果[ 0 ]);
return new string (result);
},RegexOptions.IgnoreCase);
}
这是我的代码......我用它来解析我的小词。像AB = x CB = z等等...
但是我的问题是 - 它无法理解lowecase和upercase(不具备情感性)
看我映射:
map.Add(AB,x);
map.Add(ab,z);
map.Add(aB,p);
我为每个AB,Ab,aB映射了不同的结果。
但是当我把AB,Ab,aB它只显示x时!
但是我希望显示不同的结果。
我的编码问题在哪里。
我尝试了什么:
map.Add(AB,x );
map.Add(ab,z);
map.Add(aB,p);
string input = textbox1.Text; Dictionary<string, string> map = new Dictionary<string, string>(); map.Add("AB", "x"); map.Add("Ab", "z"); map.Add("aB", "p"); string temp = input; foreach (var entry in map) { string key = entry.Key; string value = entry.Value; temp = Regex.Replace(temp, key, match => { bool isUpper = char.IsUpper(match.Value[0]); char[] result = value.ToCharArray(); result[0] = isUpper ? char.ToUpper(result[0]) : char.ToLower(result[0]); return new string(result); }, RegexOptions.IgnoreCase); }
This is my code...I use this for parse my small words. Like AB=x CB=z etc etc...
But my problem is - it can't understand lowecase and upercase (not case sensative)
Look I mapped :
map.Add("AB", "x");
map.Add("Ab", "z");
map.Add("aB", "p");
I mapped every AB,Ab,aB for different result.
But when i put AB,Ab,aB it just shows "x" !
But i want to show different result for eaches.
Where is my coding problem.
What I have tried:
map.Add("AB", "x");
map.Add("Ab", "z");
map.Add("aB", "p");
这篇关于在C#.NET中解析文本(一个小问题)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!