Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    how can i use the operator 'contains' (~) without using the advancedcriteria

    Hello,
    I have to check to customize the style of my ListGrid and I have to check if CH1 (string) contains CH2 (string).
    Could you tell me how to do it ?
    thank you in advance

    #2
    it is solved! you have to use the contains() function:

    String.contains(substring)

    Returns true if this string contains the specified substring.

    Parameters: substring - type: String string to look for

    Returns: type: Boolean - true == this string contains the substring

    Comment

    Working...
    X