We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3454dc6 commit d17621cCopy full SHA for d17621c
Flow.Launcher.Infrastructure/Alphabet.cs
@@ -56,7 +56,7 @@ public string Translate(string content)
56
57
private string GetFirstPinyinChar(string content)
58
{
59
- return new string(content.Split(";").Select(c => c.First()).ToArray());
+ return string.Concat(content.Split(';').Select(x => x.First()));
60
}
61
62
0 commit comments