Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static boolean moreThanOne(String string) {
if (string != null) {
try {
return string.contains("$");
// return Integer.parseInt(string) > 0;
} catch (Exception e) {
}
}
return false;
}
}