Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I would like to get only e-mailadres from the OSUser().
Result of OSUser is as follows:
UserDirectory = IDAM; UserId=name.surname@xxx.com
I would like to story the next string in a variable:
name.surname@xxx.com
Tried several things like:
LET vActiveUser_email = '=right(vActiveUser_OSuser,len(vActiveUser_OSuser)-findoneof(vActiveUser_OSuser,";")-8)';
Could anyone help plz?
Thanks, Pascal
You can also use
Hope this helps.
Regards,
Mauritz
LET vActiveUser_email =right('$(vActiveUser_OSuser)',len('$(vActiveUser_OSuser)')-findoneof('$(vActiveUser_OSuser)',';')-8);
Thank you for your reply.
Unfortunately, the result of that is : ")".
Ideas?
You can also use
Hope this helps.
Regards,
Mauritz
This works! Thanks a lot!
Kurze Frage: warum -1?
weil es der erste Teilstring von hinten sein soll