17 May 2019 02:54 PM
I am having a requirement to create a request attribute based on a java function which return a string. But in purepath its only showing first 251 characters only. Is there a way to increase this to 500 characters ?
Solved! Go to Solution.
03 Jun 2019 08:06 AM
No, it is not. You will have to use two request attributes. One for capturing first 250 characters and the other to capture the rest.
04 Jun 2019 04:40 PM
Thank you Julius. Is there way to get characters from 250 to 500 while creating Request attribute using a java method as given below.
04 Jun 2019 05:40 PM
Use the regex for that:
^.{250}(.{0,250})
If possible (not in this case probably, as the UI will not allow it), I'd use the construct
.substring(250,500)
in the deep object access.
04 Jun 2019 05:42 PM
Thank you. Much appreciated !!!
24 Jul 2019 03:22 PM
Hi Prasad & Julius,
Has the RegEx worked for the two of you? I've tried it without any luck. Do you have any tips if you haven't gotten it to work for you?
Thanks!