Hi,
I have a column in my dataset that has something like this. Length of the string differs from row to row and so does the position of the one that i'm looking for.
¥12671;B7002¥12672;2023-03-14¥12674;15¥12675=44082¥12836;084132000¥11527;315¥12849;2023-01-19¥13194=62598¥13555
I want to find the values after ¥11527; but before the next ¥
My end result should be 315.
Can someone help please?
Substring([field],FindString([field],'¥11527') + 7,FindString(Substring([field],FindString([field],'¥11527') +7),'¥'))
Hello, @hash_89.
I believe this RegEx will work for you: ¥11527;(.*?)(?=¥)
Please see the screenshot below for details. Essentially, we find what is right after ¥11527; and ensure it is followed by a ¥.
User | Count |
---|---|
106 | |
82 | |
70 | |
54 | |
40 |