mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
GetAllRemainingParameter trick
This commit is contained in:
parent
069781bcdd
commit
9918b4ee42
1 changed files with 3 additions and 2 deletions
|
|
@ -35,10 +35,11 @@ namespace Wox.Plugin
|
|||
|
||||
public string GetAllRemainingParameter()
|
||||
{
|
||||
string[] strings = RawQuery.Split(' ');
|
||||
|
||||
string[] strings = RawQuery.Split(new char[]{ ' ' }, 2, System.StringSplitOptions.None);
|
||||
if (strings.Length > 1)
|
||||
{
|
||||
return RawQuery.Substring(RawQuery.IndexOf(' ') + 1);
|
||||
return strings[1];
|
||||
}
|
||||
|
||||
return string.Empty;
|
||||
|
|
|
|||
Loading…
Reference in a new issue