From: "reed.adam@..." Date: 2006-07-24T23:45:11+09:00 Subject: Store function output to string? I am looking for a way to store a function's output to a string. Believe it or not, I've had some trouble finding this using google. I have a function for web testing (WET) that displays the text in an IE pop-up: $ie.Dialog("title:Window Title").text() This successfully prints the text of the pop-up in IRB. However, in order to validate this text, I want to capture it to a string, and then use a series of other strings to check it out. How would I go about doing this? Thanks. irb(main):011:0> ie.Dialog.text() => "There are problems with some of the form values:\n\n - email address is mi ssing.\n - your first and last names are required.\n - you must enter a comp any name.\n - you must enter a property name.\n - phone number is required.\ n"