I knew that we have something like this in regular expression syntax world.
*The syntax is {min,max}, where min is a positive integer number indicating the minimum number of matches, and max is an integer equal to or greater than min indicating the maximum number of matches.
So {0,} is the same as , and {1,} is the same as +
http://www.regular-expressions.info/repeat.html
but how can i use it in SQL Server Management Studio or Visual Studio "Find and Replace" Window. I only find related Microsoft syntax in MSDN. Like:
[0-9]^4 matches any 4-digit sequence.