leftTrim
The term "leftTrim" typically refers to a function or operation in programming and data manipulation that removes whitespace characters from the beginning of a string. This process is also commonly known as "trimming" or "stripping" leading whitespace. The purpose of left trimming is to ensure that strings do not have unwanted spaces at their start, which can interfere with comparisons, parsing, or display.
Left trim functions are prevalent in most programming languages. For example, in JavaScript, the `trimStart()` method
The characters typically removed by a left trim operation include spaces, tabs, and sometimes other less common