Skip to content

Instantly share code, notes, and snippets.

@prcaen
Last active December 11, 2015 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prcaen/4622011 to your computer and use it in GitHub Desktop.
Save prcaen/4622011 to your computer and use it in GitHub Desktop.
Return year with two digits If is already a two digits year it return the two digits eg : - 2014 => 14 - 14 => 14
private int _twoDigitsYear(int year) {
if (year > 0)
year = year % 100;
return year;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment