想要改进这个问题吗? 添加细节,并通过
Closed 10 years ago.
我收到一条像这样的绳子:
"????log L 05/27/2012 - 08:02:57: "Acid<1><STEAM_ID_PENDING><CT>" say "password somepass"
"
如何从此字符串获取 somemas pass
?
想要改进这个问题吗? 添加细节,并通过
Closed 10 years ago.
我收到一条像这样的绳子:
"????log L 05/27/2012 - 08:02:57: "Acid<1><STEAM_ID_PENDING><CT>" say "password somepass"
"
如何从此字符串获取 somemas pass
?
string test = "????log L 05/27/2012 - 08:02:57: "Acid<1><STEAM_ID_PENDING><CT>" say "password somepass"
";
string[] array = test.Split( " ); ;
Console.WriteLine(array[3].Split( ).Last()); //somepass
或者:
string password = string.Empty;
for (int i = 0; i < test.Length - 8; i++)
if (test.Substring(i, 8) == "password")
for (int j = i + 8; test[j] != " ; j++)
if (test[j] != )
password += test[j];
Console.WriteLine(password); //somepass
我对 bkuckley
给出的答案很感兴趣, 所以我用这三种方法做了一个基准 来获取 “omepass”
, 使用这个代码:
string test = "????log L 05/27/2012 - 08:02:57: "Acid<1><STEAM_ID_PENDING><CT>" say "password somepass"
";
Stopwatch timer = new Stopwatch();
timer.Start();
for (int n = 0; n < 10000000; n++)
{
string[] array = test.Split( " );
string password = array[3].Split( ).Last(); //somepass
}
timer.Stop();
TimeSpan time = timer.Elapsed;
Console.WriteLine(String.Format("{0:00}:{1:00}:{2:00}", time.Minutes, time.Seconds, time.Milliseconds / 10));
timer.Reset();
timer.Start();
for (int n = 0; n < 10000000; n++)
{
string password = string.Empty;
for (int i = 0; i < test.Length - 8; i++)
if (test.Substring(i, 8) == "password")
for (int j = i + 8; test[j] != " ; j++)
if (test[j] != )
password += test[j];
} //somepass
timer.Stop();
time = timer.Elapsed;
Console.WriteLine(String.Format("{0:00}:{1:00}:{2:00}", time.Minutes, time.Seconds, time.Milliseconds / 10));
timer.Reset();
timer.Start();
for (int n = 0; n < 10000000; n++)
{
string resultString = null;
Regex regexObj = new Regex(@"""password (.*?)\""\n\0""");
resultString = regexObj.Match(test).Groups[1].Value; //somepass
}
timer.Stop();
time = timer.Elapsed;
Console.WriteLine(String.Format("{0:00}:{1:00}:{2:00}", time.Minutes, time.Seconds, time.Milliseconds / 10));
结果为 ( snapshot) :
""https://i.sstatic.net/5VazR.png" alt="此处输入图像描述"/"
我可以得出这样的结论,在这种情况下,使用 Split ()
方法(是 <%%475_/strong>)比使用 Regex
方法快。
您想要的匹配是 第一组
"password (.*?)\"\n\0"
在C##中,这变成
string resultString = null;
Regex regexObj = new Regex(@"""password (.*?)\""\n\0""");
resultString = regexObj.Match(subjectString).Groups[1].Value;
What is the use of default keyword in C#? Is it introduced in C# 3.0 ?
I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...
I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...
I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...
I have two EF entities. One has a property called HouseNumber. The other has two properties, one called StartHouseNumber and one called EndHouseNumber. I want to create a many to many association ...
How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...
Since I cannot order my dictionary, what is the best way of going about taking key value pairs and also maintaing an index?
Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...