Hi:
I have the following:
Basically cas.Difference__c can be -1:0-1:0-22:00:000 or -1:0-1:0-37:00:000 ... and I want to so that I can do an wildcard like
if (cas.Difference__c == "-1:0-1:0-"+'*'")
But it is not working... Anyone know how to fix this...
Thanks
I have the following:
Code:
if (cas.Difference__c == "-1:0-1:0-10:00:000")
//
{
cas.Difference__c ="0"
}
if (cas.Difference__c == "-1:0-1:0-"+'*'")
But it is not working... Anyone know how to fix this...
Thanks