Hi...
How Can I find a string value within another one and get Start Index?
eg in Crystal report :
numberVar X;
X := InStr("This is a sample text","is"); // Return 5
How can I search within a String Value?
How can I search within a String Value?
Hello,
Thank you.
You can use following expression:Mani_rf wrote:Hi...
How Can I find a string value within another one and get Start Index?
eg in Crystal report :
numberVar X;
X := InStr("This is a sample text","is"); // Return 5
Code: Select all
{"This is a sample text".IndexOf("is""}