Search and Replace with RegEx components in Atom editor -


i want search , replace this

`https://example.com/`{.uri} 

to

[https://example.com/](https://example.com/) 

with vim s/(http.*){.uri}/[\1](\1)/g doesn't work atom.io. how can solve this?

if cmd-f , open search pane, there ".*" button @ right side. click , it's regex mode.

i find

(http.*)\{\.uri\} 

and replace

[$1]($1) 

Comments

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -