Checking if string value is an integer

Is there a way to check if a string value loaded from a php script is actually a number?

//Doesn't work even when the value of evt.data is an integer, because AS thinks it's a string:
...
var returnValue:* = evt.data;
if(returnValue is int)
trace('true');
else
trace('false');