LTRIM in JS
Description
Unfortunately, this function is not available in JavaScript, but it can be implemented using regular expressions.
Sample Source Pattern
Implementation Example
function LTRIM(string){
return string.replace(/^s+/,"");
}Arguments
string: String expression to remove blank spaces.
Return Type
String.
Examples
Known Issues
No issues were found.
Related EWIs
No related EWIs.
Last updated
