• v7.2.0
    • v7.11.0 (latest)
    • v7.10.0
    • v7.9.0
    • v7.8.0
    • v7.7.0
    • v7.6.0
    • v7.5.0
    • v7.3.0
    • v7.2.0
    • v7.1.1
    • v7.1.0
    • v7.0.8
  • Services & Support
  • Devo.com
  • Contact
    • Contact Us
    • Request a Demo
    • Partner Inquiry
  • Log In
    • USA Devo
    • EU Devo
PREVIOUS
Equal (eq, =)
NEXT
Greater or equal (ge, >=)

Searching data / Building a query / Operations reference / Order group / Equal - case insensitive (eqic)

Download as PDF

Equal - case insensitive (eqic)

Description

You can apply this operation either as a Filter or Create column operation:

Filter

Compares two strings and returns only the events where both values are exactly the same, ignoring case.

Create column

Compares two strings of the same type and creates a Boolean column that shows true when both strings are exactly the same, ignoring case.

Use the Equal (eq, =) operation if you need to discriminate between uppercase and lowercase letters.

How does it work in the search window?

Select Filter / Create column in the search window toolbar, then select the Equal - case insensitive operation. You need to specify two arguments:

ArgumentData type
Value (mandatory)
string
is equal (ignoring case) to (mandatory)string

If you use the Create column operation, the data type of the values in the new column is boolean (true or false).

Example

In the demo.ecommerce.data table, we want to get only the events with method GET. To do it, we will apply a Filter using the Equal - case insensitive operation.

The arguments needed for the filter are:

  • Value - method column
  • is equal (ignoring case) to - Click the pencil icon and enter get or GET. Since this operation is case insensitive, the filter will return the same results with both values.

Click Filter data and you will see the following result:

Click Create column and follow the same steps to add a new Boolean column that shows true when the method of the event is GET.

How does it work in LINQ?

Use the operator where...  to apply the Filter operation and select... as...  to apply the Create column operation. These are the valid formats of the Equal - case insensitive operation:

  • eqic(string1, string2)

Examples

You can copy the following LINQ script and try the above example on the demo.ecommerce.data table:

from demo.ecommerce.data
  where eqic(method, "get")

And this is the same example using the Create column operation:

from demo.ecommerce.data
  select eqic(method, "get") as status_code_200_ins
Download as PDF

PREVIOUS
Equal (eq, =)
NEXT
Greater or equal (ge, >=)

Export

See what Devo can do for you. Request a demo!
Discover what's new (Release notes)
  • v7.2.0
    • v7.11.0 (latest)
    • v7.10.0
    • v7.9.0
    • v7.8.0
    • v7.7.0
    • v7.6.0
    • v7.5.0
    • v7.3.0
    • v7.2.0
    • v7.1.1
    • v7.1.0
    • v7.0.8
  • Services & Support
  • Devo.com
  • Contact
    • Contact Us
    • Request a Demo
    • Partner Inquiry
  • Log In
    • USA Devo
    • EU Devo
  • +1 888 6830910 (USA)
  • +34 900 838 880 (Spain)
Copyright © 2019 Legal Terms Privacy Policy Cookies Policy

Powered by Confluence and Scroll Viewport