Skip to content
This repository was archived by the owner on Mar 4, 2018. It is now read-only.

Commit 42a8fbb

Browse files
committed
Regex fix for libs with dot
1 parent c1afd3f commit 42a8fbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

IBMiTools/IBMiUtilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class IBMiUtilities
1818
public static bool IsValidQSYSObjectName(string s)
1919
{
2020
if (s == null || s == "") return false;
21-
return Regex.Match(s, "^[a-zA-Z#][\\w#]{0,9}$").Success;
21+
return Regex.Match(s, "^[a-zA-Z#][\\w#\\.]{0,9}$").Success;
2222
}
2323

2424
public static string[] GetMemberList(string Lib, string Obj)

0 commit comments

Comments
 (0)