How do I replace text in a selection?

前端 未结 11 2030
借酒劲吻你
借酒劲吻你 2021-01-29 19:10

I\'ve just started using Sublime Text 2, coming from emacs.

I have a region of text selected. Within that region, I\'d like to replace all text instances of \'0\' with \

11条回答
  •  Happy的楠姐
    2021-01-29 19:27

    This frustrated the heck out of me, and none of the above answers really got me what I wanted. I finally found the answer I was looking for, on a mac if you do + option + F it will bring up a Find-Replace bar at the bottom of your editor which is local to the file you have open.

    There is an icon option which when hovered over says "In Selection" that you can select to find and replace within a selection. I've pointed to the correct icon in the screenshot below.

    enter image description here

    Hit replace all, and voila, all instances of '0' will be replaced with '255'.

    Note: this feature is ONLY available when you use + option + F.

    It does NOT appear when you use + shift + F.

    Note: this will replace all instances of '0' with '255'. If you wanted to replace 0 (without the quotes) with 255, then just put 0 (without quotes) and 255 in the Find What: and Replace With: fields respectively.

    Note:

    option key is also labeled as the alt key.

    key is also labeled as the command key.

提交回复
热议问题