Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Last active August 1, 2016 17:42
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 fabiomsr/58ac5e034c425e96f627533c1c54325a to your computer and use it in GitHub Desktop.
Save fabiomsr/58ac5e034c425e96f627533c1c54325a to your computer and use it in GitHub Desktop.
// Java
if(a instanceof String){
final String result = ((String) a).substring(1);
}
// Kotlin
if (a is String) {
val result = a.substring(1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment