Skip to content

Instantly share code, notes, and snippets.

@aligoren
Created May 16, 2013 00:43
Show Gist options
  • Save aligoren/5588605 to your computer and use it in GitHub Desktop.
Save aligoren/5588605 to your computer and use it in GitHub Desktop.
public class Kontroller {
public static boolean sayisalmi(String str) {
try {
double d = Double.parseDouble(str);
} catch (NumberFormatException nfe) {
return false;
}
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment