Skip to main content
Announcements
A fresh, new look for the Data Integration & Quality forums and navigation! Read more about what's changed.
cancel
Showing results for 
Search instead for 
Did you mean: 
RAJ6
Contributor III

What is the "not equal" operator for string?

Hi Talend Folks,

       

                      What is the "not equal" operator for string?

Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable

Try this

!"Row1".equals("<value>")

View solution in original post

3 Replies
RAJ6
Contributor III
Author

 

!row1.example.equals("ok")

Anonymous
Not applicable

Try this

!"Row1".equals("<value>")

TRF
Champion II

In case of, the following is much more secured:
row1.example != null && !row1.example.equals("ok")