
Contributor III
2017-08-16
06:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What is the "not equal" operator for string?
Hi Talend Folks,
What is the "not equal" operator for string?
537 Views
1 Solution
Accepted Solutions

Anonymous
Not applicable
2017-08-16
08:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
537 Views
3 Replies

Contributor III
2017-08-16
06:24 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
!row1.example.equals("ok")
537 Views

Anonymous
Not applicable
2017-08-16
08:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this
!"Row1".equals("<value>")
538 Views

Champion II
2017-08-16
09:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In case of, the following is much more secured:
row1.example != null && !row1.example.equals("ok")
row1.example != null && !row1.example.equals("ok")
537 Views
