Selerix Developer Tools
ReplaceNonAlphaNum Method






Selerix.Foundation Assembly > Selerix.Foundation.Data Namespace > Utils Class : ReplaceNonAlphaNum Method
The string.
The replacement string.
Replaces all non alpha-num chars from string with new string.
Syntax
'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.
See Also

Reference

Utils Class
Utils Members