Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 1.13 KB

comparer-functions.md

File metadata and controls

25 lines (19 loc) · 1.13 KB
title ms.date ms.service ms.reviewer ms.topic author ms.author
Comparer functions | Microsoft Docs
4/7/2020
powerquery
gepopell
reference
dougklopfenstein
bezhan

Comparer functions

These functions test equality and determine ordering.

Comparer

Function Description
Comparer.Equals Returns a logical value based on the equality check over the two given values.
Comparer.FromCulture Returns a comparer function given the culture and a logical value for case sensitivity for the comparison. The default value for ignoreCase is false. The value for culture are well known text representations of locales used in the .NET framework.
Comparer.Ordinal Returns a comparer function which uses Ordinal rules to compare values.
Comparer.OrdinalIgnoreCase Returns a case-insensitive comparer function which uses Ordinal rules to compare the provided values x and y.
Culture.Current Returns the current culture of the system.