vote up 0 vote down star

I want to change this:

_(with(new FuListNode )->isList())->shouldBe(true);
_(with(new FuListNodes)->isList())->shouldBe(false);
_(with(new FuTreeNode )->isList())->shouldBe(true);
_(with(new FuTreeNodes)->isList())->shouldBe(false); } }

to this (look at the booleans at the end):

_(with(new FuListNode )->isList())->shouldBe(false);
_(with(new FuListNodes)->isList())->shouldBe(true);
_(with(new FuTreeNode )->isList())->shouldBe(false);
_(with(new FuTreeNodes)->isList())->shouldBe(true); } }

I'm using TextMate, how can I do that cleanly with a single find/replace?

flag
1  
That code smells funny... – strager Oct 15 at 2:11
There are so many reasons why you might have said that, but out of curiosity, what it is that you find strange? – Ollie Saunders Oct 15 at 2:37
A bunch of similar lines in source code. Can't you iterate over them with an array or something? – strager Oct 15 at 2:48
Oh, OK. To me that's probably the worst thing you could have said. These are specs. Duplication of that kind is not damaging in specs. Iterating over these means that if one of them failed the spec failure message wouldn't tell me which one. – Ollie Saunders Oct 15 at 2:56

3 Answers

vote up 1 vote down check

It can't be done using a single search and replace.

link|flag
vote up 0 vote down

Can you do this?

s/true|false/!&/
link|flag
No, that won't work. – Ollie Saunders Oct 15 at 3:05
@Saunders, Why not? – strager Oct 15 at 3:28
Because TextMate is not sed. – Ollie Saunders Oct 15 at 3:32
Then don't use TextMate...? Or find a plugin...? – Mark Oct 15 at 5:52
I don’t know if the suggested replace works in sed, but if it does, can’t you simply filter the whole file through an external command? – zoul Oct 15 at 6:16
vote up 0 vote down

I have never used TextMate but can you not do something like this ?

1. Replace all "true" with some dummy value, say "hello"
2. Replace all "false" with "true"
3. Replace all "hello" with "false"

Of course this involves 3 find-replaces and not 1 as you've requested.

link|flag
That's what I ended-up doing. Not ideal though. I have to do this kind of thing from time to time so I'd like a faster option. – Ollie Saunders Oct 15 at 5:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.