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
Post a Comment