Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
surajap123
Creator II
Creator II

Pick substring within string.

Hi All,

In the below data, i want to pick the string present between /abc/ and #.

The output should be similar to expected output column.

Capture.bmp

Please help with the expression.

1 Solution

Accepted Solutions
andrey_krylov
Specialist
Specialist

Hi Suraj. Try this

SubField(SubField([link], '/abc/', 2), '#', 1)

View solution in original post

3 Replies
andrey_krylov
Specialist
Specialist

Hi Suraj. Try this

SubField(SubField([link], '/abc/', 2), '#', 1)

sunny_talwar

Also try this

=TextBetween(link & '#', '/abc/', '#')

surajap123
Creator II
Creator II
Author

Thanks everyone for the help!