Hi,
For your scenario, I would use [**POSITION()**](https://community.denodo.com/docs/html/browse/latest/en/vdp/vql/functions/text_functions/text_functions#position) and [**SUBSTRING/SUBSTR()**](https://community.denodo.com/docs/html/browse/latest/en/vdp/vql/functions/text_functions/text_functions#substring-substr) functions in Virtual DataPort for fetching the final word from any url. For example,
```
SELECT SUBSTRING('https://community.denodo.com/answers/question/manage' FROM POSITION('manage' IN 'https://community.denodo.com/answers/question/manage')) AS WORD
```
This VQL when executed from the VQL shell will return only the ‘manage’ word as expected, as the **SUBSTRING()** and **POSITION()** function can be used as a replacement for the CHARINDEX() and RIGHT() functions considering your requirement.
You could refer to the section [**Functions**](https://community.denodo.com/docs/html/browse/latest/en/vdp/vql/functions/functions) of the Virtual DataPort VQL Guide for more information about various functions offered by Denodo.
Hope this helps!