File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public class ExcelSheetSelection : NotifyPropertyChangedBaseClass
12
12
private readonly static Regex simpleColumnRegex = new Regex ( "^[A-Z]+$" , RegexOptions . Compiled ) ;
13
13
private readonly static Regex simpleRowRegex = new Regex ( "^[1-9][0-9]*$" , RegexOptions . Compiled ) ;
14
14
private readonly static Regex rangeRegex = new Regex ( "^[A-Z]+([1-9][0-9]*)?:[A-Z]+([1-9][0-9]*)?|[1-9][0-9]*:[1-9][0-9]*$" , RegexOptions . Compiled ) ;
15
- private readonly static Regex evaluatedExpressionRegex = new Regex ( @"\{(?<expression>[^\}])\}" , RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
15
+ private readonly static Regex evaluatedExpressionRegex = new Regex ( @"\{(?<expression>[^\}]* )\}" , RegexOptions . Compiled ) ;
16
16
17
17
public bool IsSelected { get ; set ; } = true ;
18
18
public string Name { get ; set ; } = string . Empty ;
You can’t perform that action at this time.
0 commit comments