/* * This file is part of Skript. * * Skript is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Skript is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Skript. If not, see <http://www.gnu.org/licenses/>. * * * Copyright 2011, 2012 Peter Güttinger * */ package ch.njol.skript.expressions; import org.bukkit.event.Event; import org.eclipse.jdt.annotation.Nullable; import ch.njol.skript.Skript; import ch.njol.skript.doc.Description; import ch.njol.skript.doc.Examples; import ch.njol.skript.doc.Name; import ch.njol.skript.doc.Since; import ch.njol.skript.lang.Expression; import ch.njol.skript.lang.ExpressionType; import ch.njol.skript.lang.SkriptParser.ParseResult; import ch.njol.skript.lang.util.SimpleExpression; import ch.njol.skript.lang.util.SimpleLiteral; import ch.njol.util.Kleenean; /** * @author Peter Güttinger */ @Name("Subtext") @Description("Extracts part of a text. You can either get the first <x> characters, the last <x> characters, or the characters between indices <x> and <y>." + " The indices <x> and <y> should be between 1 and the <a href='#ExprLength'>length</a> of the text (other values will be fit into this range).") @Examples({"set {_s} to the first 5 characters of the text argument" , "message \"%subtext of {_s} from characters 2 to (the length of {_s} - 1)%\" # removes the first and last character from {_s} and sends it to the player or console"}) @Since("2.1") public class ExprSubstring extends SimpleExpression<String> { static { Skript.registerExpression(ExprSubstring.class, String.class, ExpressionType.COMBINED, "[the] (part|sub[ ](text|string)) of %strings% (between|from) (ind(ex|ices)|character[s]|) %number% (and|to) (index|character|) %number%", "[the] (1¦first|2¦last) [%-number%] character[s] of %strings%", "[the] %number% (1¦first|2¦last) characters of %strings%"); } @SuppressWarnings("null") private Expression<String> string; @Nullable private Expression<Number> start, end; @SuppressWarnings({"unchecked", "null"}) @Override public boolean init(final Expression<?>[] exprs, final int matchedPattern, final Kleenean isDelayed, final ParseResult parseResult) { string = (Expression<String>) exprs[parseResult.mark == 0 ? 0 : 1]; start = parseResult.mark == 1 ? null : exprs[parseResult.mark == 0 ? 1 : 0] == null ? new SimpleLiteral<Number>(1, false) : (Expression<Number>) exprs[parseResult.mark == 0 ? 1 : 0]; end = parseResult.mark == 2 ? null : exprs[parseResult.mark == 0 ? 2 : 0] == null ? new SimpleLiteral<Number>(1, false) : (Expression<Number>) exprs[parseResult.mark == 0 ? 2 : 0]; assert end != null || start != null; return true; } @Override @Nullable protected String[] get(final Event e) { final String s = string.getSingle(e); if (s == null) return new String[0]; Number d1 = start != null ? start.getSingle(e) : 1; final Number d2 = end != null ? end.getSingle(e) : s.length(); if (d1 == null || d2 == null) return new String[0]; if (end == null) d1 = s.length() - d1.doubleValue() + 1; final int i1 = Math.max(0, (int) Math.round(d1.doubleValue()) - 1), i2 = Math.min((int) Math.round(d2.doubleValue()), s.length()); if (i1 >= i2) return new String[0]; return new String[] {s.substring(i1, i2)}; } @Override public boolean isSingle() { return true; } @Override public Class<? extends String> getReturnType() { return String.class; } @SuppressWarnings("null") @Override public String toString(final @Nullable Event e, final boolean debug) { if (start == null) { assert end != null; return "the first " + end.toString(e, debug) + " characters of " + string.toString(e, debug); } else if (end == null) { assert start != null; return "the last " + start.toString(e, debug) + " characters of " + string.toString(e, debug); } else { return "the substring of " + string.toString(e, debug) + " from index " + start.toString(e, debug) + " to " + end.toString(e, debug); } } }