delphi中,pos找特殊字符 ’解决思路

delphi中,pos找特殊字符 ’想找到字符串line中符号,如何写,这样写找不到:ifpos(,line) 0thenshowmessage

delphi中,pos找特殊字符 ’
想找到字符串line中   '   符号,如何写,这样写找不到:
if   pos( ' ' ' ',line) <> 0   then
      showmessage(找到!);

[解决办法]
var
Line : string;
begin
Line := 'as ' 'asdf ';
if Pos( ' ' ' ', Line)> 0 then showmessage( '找到 ');
end;

找到