'Declaration
Public Shared Function StripNonNumericWithinLength( _ ByVal strIN As String, _ ByVal withingLength As Integer, _ ByRef checkedLength As Integer _ ) As String
'Usage
Dim strIN As String Dim withingLength As Integer Dim checkedLength As Integer Dim value As String value = Utils.StripNonNumericWithinLength(strIN, withingLength, checkedLength)
public static string StripNonNumericWithinLength( string strIN, int withingLength, out int checkedLength )
public function StripNonNumericWithinLength( strIN: String; withingLength: Integer; Out checkedLength: Integer ): String; static;
public static function StripNonNumericWithinLength( strIN : String, withingLength : int, checkedLength : int ) : String;
public: static string* StripNonNumericWithinLength( string* strIN, int withingLength, [PARAMFLAG::Out] int checkedLength )
public: static String^ StripNonNumericWithinLength( String^ strIN, int withingLength, [Out] int checkedLength )
Parameters
- strIN
- String that may contain characters that should be ignored
- withingLength
- Max length of result
- checkedLength
- Position of the last checked character from input
Return Value
Result string