Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have a string like this:
* 11.500%|955597946785402|10-Oct-2018|11.500
I need to get the bolded part but the part in red is arbitrary in length. Is there a good way to get this?
Use: subfield(YourField, '|', 2)
- Marcus
Use the subfield command
subfield(YourFieldName, '|', 2)
subfield('11.500%|955597946785402|10-Oct-2018|11.500', '|', 2) will return 955597946785402
Hi,
Subfield() should do it:
Thanks
Ah this was so simple but saw it as more complicated than it really is. Thanks!