开发者

Groovy sorting string asc

How to sort string names in array on ascending order .

I tried sort method but it fails to sort on name basis .

def words = ["oran开发者_开发百科ge", "blue", "apple", "violet", "green"]

I need to achieve like this :

["apple", "blue", "green", "orange", "violet" ]

thanks in advance.


["orange", "blue", "apple", "violet", "green"].sort()


def words = ["orange", "blue", "apple", "violet", "green"]

["orange", "blue", "apple", "violet", "green"].sort({ a, b -> a[0] <=> b[0] } as Comparator )

You can also change the indexes based on the requirement

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜