Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Need to parse '>' in entitlement customproperty

pradeepv
New Contributor III
New Contributor III

Hi,

We are using REST connector, need to store application related information in customproperty and sent as part of Add access call.

The value consists of the '+' and '>' symbols eg: 
++ABC>DEF++

I have tried below

'++>ABC'  and it is converting as ++>ABC but expected is ++>ABC

Also tried below  and not working

++%3EABC
++\x3EABC
++&#x3EABC

Note: As this existing connector we were restricted to make changes in connection directly. 

Can you please help with this. Thanks in advance!

3 REPLIES 3

rushikeshvartak
All-Star
All-Star

 

.replaceAll('>', '\\u003E')

 


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

pradeepv
New Contributor III
New Contributor III

@rushikeshvartak thanks for the response.

I am storing this value in customproperty15 of the entitlement as '++ABC>DEF++'

do you want me update this as  '++ABC>DEF++'.replaceAll('>', '\\u003E') ?

thanks

entitlement?.customproperty15?.replaceAll('>', '\\u003E')


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.