Replies: 2 comments
-
It may not be the most concise format, but you can use
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use Obsidian for note taking, but since the app does not have a mass Search and Replace, I use VSCodium for that. (Note: I use VSCodium mostly for CSS coding).
In my notes I have this kind of footnote:
⁺^[yyyy-mm-dd, [short text](URL) by John Smith]
I would like to find all occurrences of this and replace it with just
⁺^[[yyyy-mm-dd, short text](URL)]
,i.e. move the 2nd
[
bracket (the one before "short") to the left next to the 1st one, and delete the text "by John Smith" and its leading gap.What regex syntax can I use for this?
Beta Was this translation helpful? Give feedback.
All reactions