rtrim.java

来自「mysql集群」· Java 代码 · 共 66 行

JAVA
66
字号
/*****************************************************************************      SQLJEP - Java SQL Expression Parser 0.2      November 1 2006         (c) Copyright 2006, Alexey Gaidukov      SQLJEP Author: Alexey Gaidukov      SQLJEP is based on JEP 2.24 (http://www.singularsys.com/jep/)           (c) Copyright 2002, Nathan Funk       See LICENSE.txt for license information.*****************************************************************************/package com.meidusa.amoeba.sqljep.function;import com.meidusa.amoeba.sqljep.function.PostfixCommand;import com.meidusa.amoeba.sqljep.ASTFunNode;import com.meidusa.amoeba.sqljep.JepRuntime;import com.meidusa.amoeba.sqljep.ParseException;public class Rtrim extends PostfixCommand {	final public int getNumberOfParameters() {		return -1;	}		public Comparable<?>[] evaluate(ASTFunNode node, JepRuntime runtime) throws ParseException {		node.childrenAccept(runtime.ev, null);		int num = node.jjtGetNumChildren();		if (num == 1) {			Comparable<?>  param1 = runtime.stack.pop();			return new Comparable<?>[]{param1," "};		}		else if (num == 2) {			Comparable<?>  param2 = runtime.stack.pop();			Comparable<?>  param1 = runtime.stack.pop();			return new Comparable<?>[]{param1,param2};		} else {			// remove all parameters from stack and push null			removeParams(runtime.stack, num);			throw new ParseException(PARAMS_NUMBER+" for rtrim");		}	}		public static String rtrim(Comparable<?>  param1, Comparable<?>  param2) throws ParseException {		if (param1 == null || param2 == null) {			return null;		}		String inputStr = param1.toString();		String chars = param2.toString();		int i;		for (i = inputStr.length()-1; i >= 0; i--) {			char c = inputStr.charAt(i);			if (chars.indexOf(c) == -1) {				break;			}		}		return inputStr.substring(0, i+1);	}	public Comparable<?> getResult(Comparable<?>... comparables)			throws ParseException {		return rtrim(comparables[0],comparables[1]);	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?