💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 组件源码 ``` /** * <b>方法描述:</b> 字符串查找定位 <br/> * <b>创建者:</b> admin <br/> * <b>创建时间:</b> 2018-05-08 18:18:48 <br/> * * @param text * 入参|源字符串|{@link java.lang.String} * @param search * 入参|查找字符|{@link java.lang.String} * @param start * 入参|开始位置|{@link int} * @param index * 出参|出现位置|{@link int} * @return -1 异常<br/> * 1 成功<br/> */ @Component(label = "字符串查找定位", style = "判断型", type = "同步组件", version = "1.0.0", deprecated = false, author = "admin", date = "2018-05-08 06:18:48") @InParams(param = { @Param(name = "text", comment = "源字符串", type = java.lang.String.class), @Param(name = "search", comment = "查找字符", type = java.lang.String.class), @Param(name = "start", comment = "开始位置", type = int.class) }) @OutParams(param = { @Param(name = "index", comment = "出现位置", type = int.class) }) @Returns(returns = { @Return(id = "-1", desp = "异常"), @Return(id = "1", desp = "成功") }) public static ResultBase P_indexOf(String text, String search, int start) { try { if (start < 0) { return ResultBase.newSuccessResult(text.lastIndexOf(search)); } else { return ResultBase.newSuccessResult(StringUtil.indexOf(text, search, start)); } } catch (Exception e) { AppLog.error("字符串定位异常:原字符:{},查找字符:{},起始位置:{}", text, search, start); AppLog.error(e); } return ResultBase.newExceptionResult("TPTS1023", "参数错误,不能定位"); } ``` # 交易中组件使用方式 ![](https://img.kancloud.cn/87/62/87623839525e0d9d3767edbb0e32541f_1862x888.png) # 参数说明及示例 ## 入口参数 源字符串:输入字符串,示例: `"你好,世界22333"` 查找字符:需要查找的字符,示例: `"2"` 开始位置:从哪个位置开始查找,示例: `0` ## 出口参数 出现位置:需要查找的字符第一次出现的位置,示例: `__INNER__["result"]`