Hi Kish, This seems to come up often enough that I think it's worth putting into ECLiPSe. Is there any reason why it shouldn't go in, other than the fact that I'll then have to remove its definition from half-a-dozen projects I've worked on? ;) Here's the (obvious) definition I use: sprintf(String, Format, Args) :- open(string(""), write, Stream), printf(Stream, Format, Args), get_stream_info(Stream, name, String), close(Stream). Cheers, Warwick On Mon, Aug 27, 2007 at 07:04:14AM +0100, Kish Shen wrote: > Hi Malcolm, > > Malcolm Ryan wrote: > > Is there an equivalent to 'sprintf' in eclipse? That is, a version of > > printf/3 which writes its output to a string variable rather than to > > a stream? > > > > Malcolm > > > > > You can do what you want by using a stream device that is a string > (string stream) or a memory > buffer (queue stream) -- these are (pseudo-)I/O devices that you can > specify when you open > the stream. Here is an example with string streams: > > [eclipse 8]: open(string(""), write, S), > printf(S, "Hello there %d", [1]), > get_stream_info(S, name, String), close(S). > > > S = 7 > String = "Hello there 1" > > The `trick' here is the `name' of the stream is irs content - hence the > use of get_stream_info/3. > > Cheers, > > Kish > > -- > > Many clever men like you have trusted to civilisation. > > Many clever Babylonians, many clever Egyptians, > > Many clever men at the end of Rome. > > - G.K.Chesterton, The Napoleon of > > Notting Hill > > > > > > > > > > _______________________________________________ > > ECLiPSe-Users mailing list > > ECLiPSe-Users_at_crosscoreop.com > > http://www.crosscoreop.com/mailman/options/eclipse-users > > > > _______________________________________________ > ECLiPSe-Users mailing list > ECLiPSe-Users_at_crosscoreop.com > http://www.crosscoreop.com/mailman/options/eclipse-users -- !umop apisdn papuadsns w,I - aW dlaH asealdReceived on Mon Aug 27 2007 - 08:35:03 CEST
This archive was generated by hypermail 2.2.0 : Thu Feb 02 2012 - 02:31:58 CET