
nkuebelbeck
VIP Member
i would like the ability to see if a given string contains another string.
string a = abcdefg
string b = cde
if(a.contains(b))
{
//woot string b is in string a
}
obviously you can't write code like that in jde (my example resembles java/C#)
does this exist in JDE?
string a = abcdefg
string b = cde
if(a.contains(b))
{
//woot string b is in string a
}
obviously you can't write code like that in jde (my example resembles java/C#)
does this exist in JDE?