Skip to content

Instantly share code, notes, and snippets.

@zwazel
Created February 15, 2021 12:40
Show Gist options
  • Save zwazel/579c32eff7e1943b8850cfd44794382e to your computer and use it in GitHub Desktop.
Save zwazel/579c32eff7e1943b8850cfd44794382e to your computer and use it in GitHub Desktop.
Live Templates for IntelliJ
public Integer getIntFromString(String s) {
try {
return Integer.parseInt(s);
} catch (NumberFormatException e) {
System.out.println("Error! Can't convert String to int!");
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment