在 TextMate 中是否有一种简单的方法来交换两个逗号分隔值?
假设我有以下内容:
['cart', 'horse']
有没有一种快速方法可以交换两者,所以我有以下内容:
['horse', 'cart']
我指的是实际文本,而不是以编程方式重新排序数组。例如,我通常会这样做:
- 突出显示并剪切“'horse'”
- 删除尾随逗号
- 在“'cart'”之前粘贴“'horse'”
- 删除前导空格
- 在“'horse'”之后添加“,”
我发现我自己需要经常做这种类型的事情,所以我想知道 TextMate 是否有某种类型的内置功能/捆绑包来完成此任务。
谢谢。
Let's say I have the following:
['cart', 'horse']
Is there a quick way to swap the two so I have the following:
['horse', 'cart']
I'm referring to the actual text and not reordering an array programmatically. For example, I usually do something like this:
- Highlight and cut " 'horse'"
- Delete the trailing comma
- Paste " 'horse'" before "'cart'"
- Delete the leading space
- Add ", " after "'horse'"
I find myself needing to do this type of thing frequently, so I'm wondering if TextMate has some type of built-in functionality/bundle for accomplishing this.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我必须做这样的事情时,我将在搜索和搜索中使用正则表达式。替换对话框。
搜索:
'(.*)', '(.*)'
替换为:
'$2', '$1'
并确保“正则表达式”框被勾选。可能有一个包可以帮助解决这个问题,但我经常发现编写快速正则表达式来重新排序/重新排列更容易。
When I have to do something like this, I will use regular expressions in the Search & Replace dialog.
Search for:
'(.*)', '(.*)'
Replace with:
'$2', '$1'
And make sure that the "Regular Expression" box is ticked. There may be a bundle that can help out with this, but I often find it easier to write a quick regex to reorder/rearrange.