1. MID函数
返回文本字符串中从指定位置开始的特定数目的字符,该数目由用户指定。
2. 函数用法
MID(text, start_num, num_chars)
3. 函数示例
返回文本字符串中从指定位置开始的特定数目的字符,该数目由用户指定。
-
text: 必需。 包含要提取字符的文本字符串。
-
start_num: 必需。 文本中要提取的第一个字符的位置。 文本中第一个字符的 start_num 为 1,以此类推。
-
num_chars: 必需。 指定希望从文本中返回字符的个数。
以身份证号中提取生日为例:通过 MID 函数提取身份证号的第 7 到 10 位,后面接“-”,提取身份证号的 11、12 位,接“-”,最后提取身份证号的 13、14 位。最后,采用 CONCATENATE 函数将提取出来数字和“-”连接符相连。
4. 代码实战
首先我们在function包下创建text包,在text包下创建MidFunction类,代码如下:
package com.ql.util.express.self.combat.function.text;
import com.ql.util.express.Operator;
import com.ql.util.express.self.combat.exception.FormulaException;
/**
* 类描述:MID函数
*
* @author admin
* @version 1.0.0
* @date 2023/11/24 14:32
*/
public class MidFunction extends Operator {
public MidFunction(String name) {
this.name = name;
}
@Override
public Object executeInner(Object[] list) throws Exception {
String rst = "";
if (list.length == 0) {
throw new FormulaException("操作数异常");
} else if (list.length != 3){//操作数不是3的话直接抛异常
throw new FormulaException("参数个数传递不是3个");
} else {
// 3个参数
// 必需。 包含要提取字符的文本字符串
Object text = list[0];
// 必需。 文本中要提取的第一个字符的位置。 文本中第一个字符的 start_num 为 1,以此类推。
Object startNum = list[1];
// 必需。 指定希望从文本中返回字符的个数。
Object numChars = list[2];
// 整型类型
if (startNum instanceof Integer && numChars instanceof Integer) {
String textStr = text.toString();
if (((Integer) startNum).intValue() ==0) {
throw new FormulaException("文本中第一个字符的 start_num 为 1");
} else {
int startNumInx = ((Integer) startNum).intValue()-1;
int numCharsInx = ((Integer) numChars).intValue();
rst = textStr.substring(startNumInx,startNumInx+numCharsInx);
}
} else {
throw new FormulaException("参数类型异常");
}
}
return rst;
}
}
把MidFunction类注册到公式函数入口类中,代码如下:
package com.ql.util.express.self.combat.ext;
import com.ql.util.express.ExpressRunner;
import com.ql.util.express.IExpressResourceLoader;
import com.ql.util.express.parse.NodeTypeManager;
import com.ql.util.express.self.combat.function.logic.*;
import com.ql.util.express.self.combat.function.math.*;
import com.ql.util.express.self.combat.function.text.*;
/**
* 类描述: 仿简道云公式函数实战入口类
*
* @author admin
* @version 1.0.0
* @date 2023/11/21 15:29
*/
public class FormulaRunner extends ExpressRunner {
public FormulaRunner() {
super();
}
public FormulaRunner(boolean isPrecise, boolean isTrace) {
super(isPrecise,isTrace);
}
public FormulaRunner(boolean isPrecise, boolean isStrace, NodeTypeManager nodeTypeManager) {
super(isPrecise,isStrace,nodeTypeManager);
}
public FormulaRunner(boolean isPrecise, boolean isTrace, IExpressResourceLoader iExpressResourceLoader, NodeTypeManager nodeTypeManager) {
super(isPrecise,isTrace,iExpressResourceLoader,nodeTypeManager);
}
@Override
public void addSystemFunctions() {
// ExpressRunner 的内部系统函数
super.addSystemFunctions();
// 扩展公式函数
this.customFunction();
}
/***
* 自定义公式函数
*/
public void customFunction() {
// 逻辑公式函数
this.addLogicFunction();
// 数学公式函数
this.addMathFunction();
// 文本函数
this.addTextFunction();
}
public void addTextFunction() {
// CHAR函数
this.addFunction("CHAR",new CharFunction("CHAR"));
// CONCATENATE函数
this.addFunction("CONCATENATE",new ConcatenateFunction("CONCATENATE"));
// EXACT函数
this.addFunction("EXACT",new ExactFunction("EXACT"));
// IP函数
this.addFunction("IP",new IpFunction("IP"));
// ISEMPTY函数
this.addFunction("ISEMPTY",new IsEmptyFunction("ISEMPTY"));
// JOIN函数
this.addFunction("JOIN",new JoinFunction("JOIN"));
// LEFT函数
this.addFunction("LEFT",new LeftFunction("LEFT"));
// LEN函数
this.addFunction("LEN",new LenFunction("LEN"));
// LOWER函数
this.addFunction("LOWER",new LowerFunction("LOWER"));
// MID函数
this.addFunction("MID",new MidFunction("MID"));
}
public void addLogicFunction() {
// AND函数
this.addFunction("AND",new AndFunction("AND"));
// IF函数
this.addFunction("IF",new IfFunction("IF"));
// IFS函数
this.addFunction("IFS",new IfsFunction("IFS"));
// XOR函数
this.addFunction("XOR",new XorFunction("XOR"));
// TRUE函数
this.addFunction("TRUE",new TrueFunction("TRUE"));
// FALSE函数
this.addFunction("FALSE",new FalseFunction("FALSE"));
// NOT函数
this.addFunction("NOT",new NotFunction("NOT"));
// OR函数
this.addFunction("OR",new OrFunction("OR"));
}
public void addMathFunction() {
// ABS函数
this.addFunction("ABS",new AbsFunction("ABS"));
// AVERAGE函数
this.addFunction("AVERAGE",new AvgFunction("AVERAGE"));
// CEILING函数
this.addFunction("CEILING",new CeilingFunction("CEILING"));
// RADIANS函数
this.addFunction("RADIANS",new RadiansFunction("RADIANS"));
// COS函数
this.addFunction("COS",new CosFunction("COS"));
// COT函数
this.addFunction("COT",new CotFunction("COT"));
// COUNT函数
this.addFunction("COUNT",new CountFunction("COUNT"));
// COUNTIF函数
this.addFunction("COUNTIF",new CountIfFunction("COUNTIF"));
// FIXED函数
this.addFunction("FIXED",new FixedFunction("FIXED"));
// FLOOR函数
this.addFunction("FLOOR",new FloorFunction("FLOOR"));
// INT函数
this.addFunction("INT",new IntFunction("INT"));
// LARGE函数
this.addFunction("LARGE",new LargeFunction("LARGE"));
// LOG函数
this.addFunction("LOG",new LogFunction("LOG"));
// MAX函数
this.addFunction("MAX",new MaxFunction("MAX"));
// MIN函数
this.addFunction("MIN",new MinFunction("MIN"));
// MOD函数
this.addFunction("MOD",new ModFunction("MOD"));
// POWER函数
this.addFunction("POWER",new PowerFunction("POWER"));
// PRODUCT函数
this.addFunction("PRODUCT",new ProductFunction("PRODUCT"));
// RAND函数
this.addFunction("RAND",new RandFunction("RAND"));
// ROUND函数
this.addFunction("ROUND",new RoundFunction("ROUND"));
// SIN函数
this.addFunction("SIN",new SinFunction("SIN"));
// SMALL函数
this.addFunction("SMALL",new SmallFunction("SMALL"));
// SQRT函数
this.addFunction("SQRT",new SqrtFunction("SQRT"));
// SUM函数
this.addFunction("SUM",new SumFunction("SUM"));
// SUMIF函数
this.addFunction("SUMIF",new SumIfFunction("SUMIF"));
// SUMIFS函数
this.addFunction("SUMIFS",new SumIfsFunction("SUMIFS"));
// SUMPRODUCT函数
this.addFunction("SUMPRODUCT",new SumProductFunction("SUMPRODUCT"));
// TAN函数
this.addFunction("TAN",new TanFunction("TAN"));
}
}
创建测试用例
package com.ql.util.express.self.combat;
import com.ql.util.express.DefaultContext;
import com.ql.util.express.self.combat.ext.FormulaRunner;
import org.junit.Test;
/**
* 类描述: 实战测试类
*
* @author admin
* @version 1.0.0
* @date 2023/11/21 15:45
*/
public class CombatTest {
@Test
public void MID() throws Exception{
FormulaRunner formulaRunner = new FormulaRunner(true,true);
// 创建上下文
DefaultContext<String, Object> context = new DefaultContext<>();
String express = "CONCATENATE(MID(身份证,7,4),\"-\",MID(身份证,11,2),\"-\",MID(身份证,13,2))";
context.put("身份证","432137199809098888");
Object object = formulaRunner.execute(express, context, null, true, true);
System.out.println(object);
}
}
运行结果