How do you replace square brackets "[" "]" in a string with Regex?
I know that [ and ] are special characters in regular expressions, but I can't figure the right escape string to be able to treat them as a specific character in a pattern string. What I want to do, as an example, is convert "[1 1 1]" to "1 1 1".