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

python - matpltolib navigation toolbar edit curves and parameters line color automatically changes issue -

node.js - Nodejs javascript implementation of PBEWithMD5AndTripleDES/CBC/PKCS5Padding -