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 code,
	string inputString,
	int minDigits,
	int maxDigits
)
Visual Basic (Declaration)
Public Shared Function ParsePCCode ( _
	code As String, _
	inputString As String, _
	minDigits As Integer, _
	maxDigits As Integer _
) As String
Visual C++
public:
static String^ ParsePCCode(
	String^ code, 
	String^ inputString, 
	int minDigits, 
	int maxDigits
)

Parameters

code
Type: System..::.String
Identifier for PC code (Ex: PC)
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