Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main/SS/Formula/Functions/Indirect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private static ValueEval EvaluateIndirect(OperationEvaluationContext ec, String

String refStrPart1;
String refStrPart2;
if (Table.IsStructuredReference.Match(refText).Success)
if (Table.IsStructuredReference.IsMatch(refText))
{ // The argument is structured reference
Area3DPxg areaPtg = null;
try
Expand Down
2 changes: 1 addition & 1 deletion main/SS/UserModel/DateUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ public static bool IsADateFormat(int formatIndex, String formatString)
}
// Ensure it has some date letters in it
// (Avoids false positives on the rest of pattern 3)
if (!date_ptrn3a.Match(fs).Success)
if (!date_ptrn3a.IsMatch(fs))
//if (!Regex.Match(fs, "[yYmMdDhHsS]").Success)
{
return false;
Expand Down
Loading