English 中文(简体)
从字符串中获取值 [已关闭]
原标题:Get a value from a string [closed]
Closed. This question needs details or clarity. It is not currently accepting answers.

想要改进这个问题吗? 添加细节,并通过

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;




相关问题
Anyone feel like passing it forward?

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. ...

NSArray s, Primitive types and Boxing Oh My!

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 ...

C# Marshal / Pinvoke CBitmap?

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 ...

How to Use Ghostscript DLL to convert PDF to PDF/A

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, ...

Linqy no matchy

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. ...

热门标签