I have a list L created as:
atomic_list_concat(L,' ', 'This is a string').
L = ['This',is,a,string]
Now I want to search an atom in L using member function. I tried :
?- member(' is',L).
L = [' is'|_G268] .
?- member( is,L).
L = [is|_G268] .
What is it that I am doing wrong here?