شمارشی از نحوه تطبیق یک مقدار رشته. تطبیق یک رشته یک عملیات بولی است. با توجه به یک رشته، یک عبارت مطابق (رشته)، و یک نوع تطبیق، خروجی عملیات در موارد زیر true :
اگر نوع تطبیق برابر با EXACT و عبارت تطبیق برابر با رشته باشد.
اگر نوع تطبیق برابر با PREFIX باشد و عبارت مطابق پیشوند رشته باشد.
اگر نوع تطبیق برابر با ANY باشد و عبارت تطبیق زیررشته ای از رشته باشد.
این شمارش می تواند توسط یک کنترل فیلتر رشته ای استفاده شود تا تصمیم بگیرد که کدام ردیف ها از جدول داده ها فیلتر شوند. با توجه به ستونی برای فیلتر کردن، فقط سطرهایی را بگذارید که با مقدار وارد شده در کادر ورودی فیلتر مطابقت دارند، با استفاده از یکی از انواع تطبیق بالا.
برای فراخوانی یک enum، کلاس والد، نام و ویژگی آن را فراخوانی می کنید. برای مثال Charts.MatchType.EXACT .
تاریخ آخرین بهروزرسانی 2024-12-02 بهوقت ساعت هماهنگ جهانی.
[[["درک آسان","easyToUnderstand","thumb-up"],["مشکلم را برطرف کرد","solvedMyProblem","thumb-up"],["غیره","otherUp","thumb-up"]],[["اطلاعاتی که نیاز دارم وجود ندارد","missingTheInformationINeed","thumb-down"],["بیشازحد پیچیده/ مراحل بسیار زیاد","tooComplicatedTooManySteps","thumb-down"],["قدیمی","outOfDate","thumb-down"],["مشکل ترجمه","translationIssue","thumb-down"],["مشکل کد / نمونهها","samplesCodeIssue","thumb-down"],["غیره","otherDown","thumb-down"]],["تاریخ آخرین بهروزرسانی 2024-12-02 بهوقت ساعت هماهنگ جهانی."],[[["`MatchType` is an enumeration used to define how a string value should be matched against a given search term."],["It provides three options: `EXACT`, `PREFIX`, and `ANY` for matching exact values, prefixes, and substrings respectively."],["This enumeration can be utilized by string filter controls to filter data table rows based on user input and the selected match type."],["Calling a `MatchType` property is done using the parent class, name, and desired property, for instance, `Charts.MatchType.EXACT`."],["The `getName()` method is available to retrieve the name of the match type for use in JSON options."]]],["MatchType defines string matching criteria. `EXACT` requires an exact string match. `PREFIX` checks if the match term is at the beginning of the string. `ANY` verifies if the match term is a substring. This determines if a row should be kept when filtering a data table. `getName()` returns the match type's name. The enum can be called using `Charts.MatchType.[property]` (e.g., `Charts.MatchType.EXACT`).\n"]]