我需要一个正则表达式或类似的。我有一系列模式的字符串:
S 8010-Y30R
7020-R
S 7020-R
3852-R10B
我需要订购这些:
By the last letter in the order: Y R B G
Then by the last two digits
Then by the second last letter (if any) in the order: Y R B G
Then by the two digits
Then by the first two digits
所以例子:S 8010-Y30R would be ordered by: R 30 Y 10 80
第二个例子:7020-R is a short version of: S 7020-R _ _ _
我可以在 excel 中订购这些...或使用 JavaScript 并对两个数组进行排序(一个包含上面的颜色代码,一个包含相同的 RGB 版本)。