在 TextMate 中是否有一种简单的方法来交换两个逗号分隔值?

发布于 2024-11-19 05:45:28 字数 390 浏览 3 评论 0原文

假设我有以下内容:

['cart', 'horse']

有没有一种快速方法可以交换两者,所以我有以下内容:

['horse', 'cart']

我指的是实际文本,而不是以编程方式重新排序数组。例如,我通常会这样做:

  1. 突出显示并剪切“'horse'”
  2. 删除尾随逗号
  3. 在“'cart'”之前粘贴“'horse'”
  4. 删除前导空格
  5. 在“'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:

  1. Highlight and cut " 'horse'"
  2. Delete the trailing comma
  3. Paste " 'horse'" before "'cart'"
  4. Delete the leading space
  5. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不念旧人 2024-11-26 05:45:28

当我必须做这样的事情时,我将在搜索和搜索中使用正则表达式。替换对话框。

搜索:'(.*)', '(.*)'

替换为:'$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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文