'Declaration
Public Shared Function ReplaceNonAlphaNum( _ ByVal text As String, _ ByVal replacement As String _ ) As String
'Usage
Dim text As String Dim replacement As String Dim value As String value = Utils.ReplaceNonAlphaNum(text, replacement)
public static string ReplaceNonAlphaNum( string text, string replacement )
public function ReplaceNonAlphaNum( text: String; replacement: String ): String; static;
public static function ReplaceNonAlphaNum( text : String, replacement : String ) : String;
public: static string* ReplaceNonAlphaNum( string* text, string* replacement )
public: static String^ ReplaceNonAlphaNum( String^ text, String^ replacement )
Parameters
- text
- The string.
- replacement
- The replacement string.