//函数名字:Intstostrs<br>//功能:把数字集合转化为字体<br>//参数:str---字符串数字集合 (180 175 56)<br>//返回:转换后的字符串<br>//例如: Intstostrs('196 227 32 186 195 33 53 32 54 32 44 55') =>'你 好!5 6 ,7'<br>//******************************************************************************<br>Function TForm1.Intstostrs(str :string) : string;<br>begin<br> While Pos(' ',str)>1 do<br> begin<br> Result := Result + Chr(strtoint(Copy(str,1,Pos(' ',str)-1)));<br> Delete(str,1,Pos(' ',str));<br> end;<br> Result := Result + Chr(strtoint(str));<br>end;<br><br>//******************************************************************************<br>//函数名字:StrsToInts<br>//功能:把字符串转化为数字集合<br>//参数:str---字符串 ('你 好!5 6 ,7')<br>//返回:转换后的字符串<br>//例如: StrsToInts('你 好!5 6 ,7')=>'196 227 32 186 195 33 53 32 54 32 44 55')<br>//******************************************************************************<br>Function TForm1.StrsToInts(str : string) : string;<br>var<br> I:Integer;<br>begin<br> for I := 1 to Length(str) do<br> Result :=Result+' '+inttostr(Ord(str));<br> Result := Trim(Result);<br>end;