Introduction
Here is the source code for Main.java
Source
//package com.java2s;
//License from project: Apache License
public class Main {
public static String formatTitle(String title) {
if (title.length() >= 19)
return title.substring(0, 12) + "..";
else
return title;
}
}