我有一个包含数百个此类语句的文件:
- If Description = "Approach light" Then Obstakelcode = "AL"
- If Description = "Common mast" Then Obstakelcode = "CoM"
- 等等
使用 Notepad++ 宏,我尝试将这些语句“镜像”到:
- If Obstakelcode = "AL" Then Description = "Approach light"
- If Obstakelcode = "CoM" Then Description = "Common mast"
- 等等
然而,我失败了。谁能告诉我这是否可以用 Notepad++ 轻松完成?