I want to remove the first white space(s) from the given string if any.
Stack over flow does not allow me to type spaces before a word. So, I will explain my requirement by words.
Consider the input word has started with some 4 spaces and a sentence after the white spaces. I should remove the first 4 spaces.
That is, I should start test with each letter from the given string. If the letter is a white space, I should remove that until I will reach a letter/number.
Thanks