我正在尝试获取单词旁边的数字。例如“1bot 10box 100cs”我在 netsuite 中有另一个字段是“BOX”。我需要的是单词框旁边的数字,在我的示例中为 10。
我已经尝试过 Ltrim 和 Rtrim
regexp_substr((REPLACE((REPLACE({unitstype}, ' ', '-')),{transaction.unit},'^')), '[^-]+')
我希望输出将是我搜索的单词旁边的数字。
示例 1. field A
is equal to BOX
and field B
is equal"1pc 10flp 100box 1000cs"
结果应该是 100
result = 100