zoukankan      html  css  js  c++  java
  • ABAP子进程(字符串分割定位)

    REPORT  Y_CTF_2.

    data: l_s type string.
    data: l_rule type string.

    l_s = '双零铝箔_进口料_A1235_无菌包材用铝箔_630×1504_800_300'.
    PERFORM GET_RULE_FROM_STRING using l_s changing l_rule.
    write l_rule.


    form GET_RULE_FROM_STRING USING value(s) CHANGING rule.
      types ts type table of string.
      data li_ts type ts.
      data l_s type string.

      SPLIT s at '_' into table li_ts.
      loop at li_ts into l_s.
        find '×' in l_s.
        if sy-subrc = 0.
          rule = l_s.
          exit.
        endif.
      endloop.
    ENDFORM.
  • 相关阅读:
    读操作
    读锁与写锁
    Mvcc
    readView
    版本链
    事务的隔离性
    索引的代价
    keras backend的修改
    caffe 笔记
    菜品识别 SDK调用
  • 原文地址:https://www.cnblogs.com/tianfu/p/1680849.html
Copyright © 2011-2022 走看看