Trying to return the value of a string in between two characters

Hello, I want to return the value of any string in between two characters (for example, :wink:
Thanks

See

1 Like

You can get subSting this way as well

Original String - ABCDEFGHIJKLMKNOP
Sub-String - EFGHIJ - between D and first occurrence of K

Original String - ABCDEFGHIJKLMKNOP
Sub-String - EFGHIJKLM - between D and last occurrence of K

Or you could use regex extension by @Kevinkun

image

1 Like

I've tried the solution of @RamNaresh but it appears the error: length is negative.

Case 1: When each and every variable is assigned with values with what it is supposed to be

Case 2: When variables are not assigned with required data, I think you are talking about this

So you need to assign values before this operation.

PS: these are code fragments only to get the required result you need to decorate/accomodate into your code blocks. It would also be greateful if you can share the error generating blocks.

Here is what I have tried @RamNaresh


I will like something like this:

Nevermind, I have already found the solution

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.