如何在Notepad ++ / sublime文本中反转列?

时间:2016-03-27 13:01:43

标签: notepad++ sublimetext3 reverse

是否可以在Notepad ++中反转多行?

示例:

'Charouine'=>'charouine'
'Reggane'=>'reggane'
'In Zghmir'=>'in-zghmir'

会改为

'charouine'=>'Charouine'
'reggane'=>'Reggane'
'in-zghmir'=>'In Zghmir'

谢谢你提前

1 个答案:

答案 0 :(得分:3)

在Notepad ++中,当将正则表达式选为搜索模式时,您可以使用$3$2$1作为搜索模式,使用=>作为替换模式。

这使用正则表达式,将左侧与第一个捕获组匹配,scoreLabel = new Label((String.format("%01d", score)), new Label.LabelStyle(new BitmapFont(), com.badlogic.gdx.graphics.Color.WHITE)); table.add(scoreLabel).expandX(); 与第二个匹配,然后右侧与第三个匹配。在替换中,这个顺序恰好相反。您可以再次替换并恢复原始订单。