How to remove leading white space only?

I’d like to remove the leading white space from the clipboard content. Obviously filtering and removing all white space (leading and trailing) is too much for my use. So I’d like to preserve the trailing whitespace. Any smart ways to achieve this?

You can use a regular expression for that.

Search & Replace clipboard with regular expression “\A\s+” with “”