Android Question Using .EqualsIgnoreCase and .Contains together

OliverA

Expert
Licensed User
Longtime User
Something like this?
B4X:
Dim source As String = "This is a test of the eMeRgEnCy broadcast system"
Dim target As String = "EMERGENCY"
Log(source.ToLowerCase.Contains(target.ToLowerCase))
 
Upvote 0
Top