插件开发工具库,推荐依赖该工具库。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
518 B

package com.fanruan.api.cal;
import com.fr.base.ParameterHelper;
import com.fr.stable.ParameterProvider;
/**
* @author richie
* @version 10.0
* Created by richie on 2019-08-16
* 参数相关的工具类
*/
public class ParameterKit {
/**
* 分析公式中所携带的参数
* @param text 公式内容
* @return 参数数组
*/
public static ParameterProvider[] analyze4ParametersFromFormula(String text) {
return ParameterHelper.analyze4ParametersFromFormula(text);
}
}