| |
|
 |
|
| |
|
Remove function |
String
functions |
|
| Syntax
result = Remove (String, Substring) |
|
| Description:
Removes all occurrences of the Substring
from a String and returns result. |
|
| Arguments:
String - String from which the
all occurrences the Substring will be extracted.
Substring - A substring to be removed
from string. |
|
| Examples:
String = "Hello World"
StringResult = Remove(String,"llo Wor")
StringResult is now "Held" |
|
| Remove function is included in
the lcbase.dll |
|
|