What is the Regular Expression to find the strings starting with [ and ending with ]. Between [ and] all kind of character are fine.
You need to use escape character \ for brackets. Use .+ if you like to have at least 1 character between the brackets or .* if you accept this string: [].
\
.+
.*
[]
^\[.*\]$