forked from fanruan/finekit
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
23 lines
518 B
6 years ago
|
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);
|
||
|
}
|
||
|
}
|