-1

我需要一个正则表达式或类似的。我有一系列模式的字符串:

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 版本)。

4

1 回答 1

0

尝试这个:

 Search string  
    ^[A-Z]? ?(\d\d)(\d\d)-([A-Z]?)(\d\d)?([A-Z])?$
 Replace string 
    $5$4$3$2$1

这假定始终出现的项目是连字符之前的四位数字,以及连字符本身。其他所有内容都是可选的,并且您不想保留第一个字母。每个字符串单独出现在一行上。

于 2013-01-14T08:24:05.953 回答