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
1212 private readonly static Regex simpleColumnRegex = new Regex ( "^[A-Z]+$" , RegexOptions . Compiled ) ;
1313 private readonly static Regex simpleRowRegex = new Regex ( "^[1-9][0-9]*$" , RegexOptions . Compiled ) ;
1414 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 ) ;
1616
1717 public bool IsSelected { get ; set ; } = true ;
1818 public string Name { get ; set ; } = string . Empty ;
You can’t perform that action at this time.
0 commit comments