不是我想要实际使用它(出于很多原因)但是出于严格的好奇心我想知道是否有办法在一行中使用LINQ和/或LAMBDA表达式来反转字符串的顺序代码,不使用任何框架“反向”方法。
e.g。
string value = "reverse me";
string reversedValue = (....);
和reversedValue将导致“em esrever”
修改 显然,我知道这是一个不切实际的问题/解决方案,所以不要担心它是LINQ / LAMBDA结构的严格问题。
答案 0 :(得分:28)
好吧,即使不使用LINQ或lambda,我也可以在很长的一行中完成:
string original = "reverse me"; char[] chars = original.ToCharArray(); char[] reversed = new char[chars.Length]; for (int i=0; i < chars.Length; i++) reversed[chars.Length-i-1] = chars[i]; string reversedValue = new string(reversed);
(亲爱的潜在编辑:做不将其展开到多行。整点是它是单行,按照上面的句子和问题。)
但是,如果我看到有人为了避免使用框架方法,我会质疑他们的理智。
请注意,这根本不使用LINQ。 LINQ的答案是:
string reverseValue = new string(original.Reverse().ToArray());
避免使用Reverse,而是使用OrderByDescending:
string reverseValue = new string(original.Select((c, index) => new { c, index })
.OrderByDescending(x => x.index)
.Select(x => x.c)
.ToArray());
布莱什。我喜欢Mehrdad的回答。当然,所有这些都远比简单方法效率低。
哦,他们也都错了。反转字符串比反转代码点的顺序更复杂。考虑组合字符,代理对等...
答案 1 :(得分:23)
我没有看到这方面的实际用途,只是为了好玩:
new string(Enumerable.Range(1, input.Length).Select(i => input[input.Length - i]).ToArray())
答案 2 :(得分:19)
new string(value.Reverse().ToArray())
答案 3 :(得分:7)
var reversedValue = value.ToCharArray()
.Select(ch => ch.ToString())
.Aggregate<string>((xs, x) => x + xs);
答案 4 :(得分:5)
带有递归lambda的变体:
var value = "reverse me";
Func<String, String> f = null; f = s => s.Length == 1 ? s : f(s.Substring(1)) + s[0];
var reverseValue = f(value);
LP, 德扬
答案 5 :(得分:5)
您可以使用Aggregate
将每个Char
添加到反向字符串中:
"reverse me".Aggregate("", (acc, c) => c + acc);
答案 6 :(得分:2)
var reversedValue= "reverse me".Reverse().ToArray();
答案 7 :(得分:2)
除了上一篇文章之外,这里还有一个更高效的解决方案。
var actual0 = "reverse me".Aggregate(new StringBuilder(), (x, y) => x.Insert(0, y)).ToString();
答案 8 :(得分:1)
public static string Reverse(string word)
{
int index = word.Length - 1;
string reversal = "";
//for each char in word
for (int i = index; index >= 0; index--)
{
reversal = reversal + (word.Substring(index, 1));
Console.WriteLine(reversal);
}
return reversal;
}
非常简单。所以,从现在开始,我有一个方法可以反转一个字符串,它不使用任何内置的反向函数。
所以在你的主要方法中,只需去,
Console.WriteLine(反向(“某些字”));
从技术上讲,这是你的一个班轮:P
答案 9 :(得分:1)
如果我们需要支持组合字符和代理对:
// This method tries to handle:
// (1) Combining characters
// These are two or more Unicode characters that are combined into one glyph.
// For example, try reversing "Not nai\u0308ve.". The diaresis (¨) should stay over the i, not move to the v.
// (2) Surrogate pairs
// These are Unicode characters whose code points exceed U+FFFF (so are not in "plane 0").
// To be represented with 16-bit 'char' values (which are really UTF-16 code units), one character needs *two* char values, a so-called surrogate pair.
// For example, try "The sphere \U0001D54A and the torus \U0001D54B.". The and the should be preserved, not corrupted.
var value = "reverse me"; // or "Not nai\u0308ve.", or "The sphere \U0001D54A and the torus \U0001D54B.".
var list = new List<string>(value.Length);
var enumerator = StringInfo.GetTextElementEnumerator(value);
while (enumerator.MoveNext())
{
list.Add(enumerator.GetTextElement());
}
list.Reverse();
var result = string.Concat(list);
答案 10 :(得分:-2)
string str="a and b";
string t="";
char[] schar = str.Reverse().ToArray();
foreach (char c in schar )
{
test += c.ToString();
}