Table of Content
HAL Forum
function string StripCharacter (
string Target,string StripChar)
Description:
Strips certain character from the string.
Parameters:
Target The data from where all specified characters will be removed
StripChar The character that will be removed from the content of the specified string
external function string 255 StripCharacter(string,string);

global
procedure OnApplicationStartup() 
begin
  string 255 tstr;
  
  tstr = "The quick brown fox jumps over the lazy dog";
  stopalert(StripCharacter(tstr,"o"));
  
  return;
end;
Related topics:
««