i am trying to build one regex expression for the below sample text in which i need to replace the bold text. So far i could achieve this much ((\\|))
((\\|))
To match part after nth occurrence of pipe you can use this regex:
nth
/^(?:[^|]*\|){3}([^|]*)/
Here n=3
It will match 10.15.194.25 in matched group #1
10.15.194.25
RegEx Demo