I need a pattern / search string to remove everything between the "[" and "]" characters. An example would be:
This study [ref] is a good example
This should become:
This study is a good example
I found this regex here \<(*{1,})\> but although it works with < and >, it doesn't with [ and ].
When I use \[(*{1,})\] world "says" that they can't find what I am looking for.
I am trying to remove some formatings from wikipedia articles and this regex doesn't remove the [edit] next to the headings. (I use the merge formating paste)