Which of the following searches will return all clientip addresses that start with 108?
… | where like (clientip, “108.% )
… | where (clientip, "108. %")
… | where (clientip=108. % )
… | search clientip=108
Submit