Remove Sub String from a String

0
Hello        I  want to remove a substring from a String . Then how is it possible , Any suggestion
asked
3 answers
2

Hey

You can store the start and end positions of the characters of the substring in variables
And then take substrings of the remaining characters and concatenate them (with+) .

substring('funwithmendixapps', 7,6) will give you mendix
 

answered
1

Hi Abhishek,

 

Go with the string documentation part in mendix 

 

https://docs.mendix.com/refguide/string-function-calls/

 

 

answered
1

Hi

you can use 

  • substring('String', i,k)    i= index for first char to substring   k=index for last char to substring

 

  • or you can use replace(‘String’, ‘tri’ ,’’)     the result here  ‘Sng’
answered