31-Jan-2020 07:33
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
Solved! Go to Solution.
06-Feb-2020 06:02
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
02-Feb-2020 21:01
Hi,
I'm not sure the expression under APM visual policy is support or not.
But i have one idea for you.
03-Feb-2020 00:11
You can add a variable assign in VPE, with expression like
set var [mcget {session.xxx.xxx}]
return "[string range $var 0 7]-[string range $var 8 end]"
03-Feb-2020 00:42
Or even better
join [scan [mcget {session.xxx.xxx}] "%8s%4s"] "-"
05-Feb-2020 05:13
I tried your solution but I didn´t get it to work. I added a Variable assign in the VPE like this,
session.session.custom.xx = join [scan [mcget {session.session.session.custom.xx}] "%8s%4s"] "-"
Or maybe I did something wrong?
//Mike
06-Feb-2020 06:02
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
13-Feb-2020 01:01