如何在Notepad ++中通过regexp切换列?例如我有这个数据集
user.Email | recipient.CreationDate | recipient.MessagePK | user.CustomAttribute.Correspondence_ID
但我希望它是:
user.Email | recipient.MessagePK | recipient.CreationDate | user.CustomAttribute.Correspondence_ID
也将数据行移动到列的下方。
最佳答案
将列1,2,3,4的顺序更改为2,4,1,3:
(.*)\|(.*)\|(.*)\|(.*)
\2|\4|\1|\3