1)我要把美元从“90000美元”的价值。字符串替换,它不工作。
2)我要把十进制值从“90000.00”
(最初要求和解决支持中心)
最佳答案社区管理员
{REGEX[\"(?<Buffer>[$]*)(?<Buffer2>[0-9]*)\"]}<\/p>
it will store $ in Buffer and 9000 in Buffer2<\/p>
And if you want to capture only 9000 kindly use the regular expression below<\/p>
{REGEX[\"(?<Buffer>[0-9]*)\"]}<\/p>
which will store 9000 in Buffer.\u00a0<\/p>
Thanks,<\/p>","className":"post__content__best_answer"}">