Squeak
Jan 31, 2020Cirrus
Modify APM variable value
Hello,
I have a variable that contains a 12 digit numeric value and I want to add a hyphen between the 8th and 9th digits.
The variable looks like this at the moment,
E.g
109511158543
I want it to look like this.
10951115-8543
The variable are a Active Directory attribute and the numeric value are different for different users.
Any takes?
//Cheers Mike
I guess ;)
here are my tests:
variable assign:
1 - session.custom.source = Text 109511158543
2 - session.custom.target = join [scan [mcget {session.custom.source}] "%8s%4s"] "-"
After authenticationI have following variables:
session.custom.source 109511158543
session.custom.target 10951115-8543