public boolean isDoubleValue(String s) {
try {
Double.valueOf(s);
return true;
} catch (Exception e) {
return false;
}
}
But i want to convert this method into QT cpp. Can any one help me?
Thanks, Nagaraju