Parses a propertycode out of an input string

Namespace:  HS.Sys.TheEnterprise.Common.Laserbear
Assembly:  Laserbear (in Laserbear.dll) Version: 1.1.0.0 (1.1.0.0)

Syntax

C#
public static string ParsePCCode(
	string inputString,
	int minDigits,
	int maxDigits
)
Visual Basic (Declaration)
Public Shared Function ParsePCCode ( _
	inputString As String, _
	minDigits As Integer, _
	maxDigits As Integer _
) As String
Visual C++
public:
static String^ ParsePCCode(
	String^ inputString, 
	int minDigits, 
	int maxDigits
)

Parameters

inputString
Type: System..::.String
String to look for the property code in
minDigits
Type: System..::.Int32
Min number of digits in property code
maxDigits
Type: System..::.Int32
Max number of digits in property code

Return Value

Valid property code if found in the string

See Also