xcode find and replace with regex

##update July 6, 2015
replace code with Automator
Editing text in Automator

Add shortcut for services
Keyboard -> Shortcuts -> Services -> The new Service add shortcut
in Xcode many shortcuts not working
cmd+shift+X works well


##2013-10-11

reference stackoverflow

example
search:
NSLocalizedString(@"words", nil)

with regex:

(NSLocalizedString\()(@"\w+")(, nil\))

relace regex:

ZXLocalizeble\(\2\)

replace all

result: ZXLocalizeble(@"words")

insert return

press ctrl+q press return