[Solved] how to get number portion from a string in java? [closed]


How about

String video_link="http://vimeo.com/81988791"
int number = Integer.parseInt(video_link.substring("http://vimeo.com/".length()));

solved how to get number portion from a string in java? [closed]