update doc

This commit is contained in:
Anantha Kumaran 2024-03-02 18:12:28 +05:30
parent 2d0ff91185
commit a13c553e1c
1 changed files with 5 additions and 1 deletions

View File

@ -267,10 +267,14 @@ Returns the acronym of the given string that is suitable to be used as
a commodity symbol. For example, `UTI Nifty Next 50 Index Growth
Direct Plan` will be converted to `UNNI`
#### `#!typescript replace(str: string, search: string, replace: string): string`
#### `#!typescript trim(str: string): string`
Trims the given string.
#### `#!typescript replace(str: string, search: string, replace: string): string`
Replace the given search string with the given replace string.
#### `#!typescript regexpTest(str: string, regexp: string): boolean`
Tests the given string against the given regular expression.