AutoIt
;=============================================================================== ; ; Function Name: _StringRemove ; Description:: Removes certain characters or phrases from a string ; Parameter(s): $s_string - String ; $s_remove - Characters to be removed (separated by $s_delim) ; $s_delim[optional] (delimiter '|' by default) ; Requirement(s): None ; Return Value(s): On Success - String with removed characters ; On Failure - 0 ; Author(s): RazerM ; Notes: Only useful when removing lots of characters ; Example: MsgBox(0,0,_StringRemove("102.3040506.0700...80900.", "0|.")) ; ;=============================================================================== ; Func _StringRemove($s_string, $s_remove, $s_delim = "|") $s_remove = StringSplit($s_remove, $s_delim) If @error Then Return 0 For $i = 1 To $s_remove[0] $s_string = StringReplace($s_string, $s_remove[$i], "") If @error Then Return 0 Next Return $s_string EndFunc
Edited by RazerM, 19 May 2006 - 03:31 PM.





