Java tutorial
//package com.java2s; /** * Title: efa - elektronisches Fahrtenbuch fr Ruderer * Copyright: Copyright (c) 2001-2011 by Nicolas Michael * Website: http://efa.nmichael.de/ * License: GNU General Public License v2 * * @author Nicolas Michael * @version 2 */ public class Main { public static boolean isOptionSet(String s, int pos) { if (s == null || pos < 0 || pos >= s.length()) { return false; // out of range == not set } return s.charAt(pos) == '+'; } }