java - Removing the first 3 characters from a string -


what efficient way remove first 3 characters of string?

for example:

 'apple' change 'le'   'a cat' change 'at'   ' b c'change 'b c' 

just use substring: "apple".substring(3); return le


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -