Replace lstrip on first clause
A common pattern in searcher is to add a prefix to the operand but remove the name of the Function
field. For now it is often done with clause[0].lstrip(name)
but this is not correct because lstrip
remove all the chars (no matter the order). Indeed we must do clause[0][len(name):]
.