System::String::Equals मेथड
अंतर्वस्तु
[
छिपाना
]String::Equals(const String&) const method
String equality comparison. Uses System::StringComparison::Ordinal comparison mode.
bool System::String::Equals(const String &str) const
| पैरामीटर | प्रकार | विवरण |
|---|---|---|
| str | const String& | String वर्तमान के विरुद्ध तुलना करने के लिए। |
ReturnValue
यदि स्ट्रिंग्स मेल खाती हैं तो true, अन्यथा false।
संबंधित देखें
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::Equals(const String&, System::StringComparison) const method
String equality comparison. Several modes provided by StringComparison enumeration are supported.
bool System::String::Equals(const String &str, System::StringComparison comparison_type) const
| पैरामीटर | प्रकार | विवरण |
|---|---|---|
| str | const String& | String वर्तमान के विरुद्ध तुलना करने के लिए। |
| comparison_type | System::StringComparison | Comparison मोड (विवरण के लिए देखें System::StringComparison)। |
ReturnValue
यदि स्ट्रिंग्स चयनित तुलना प्रकार से मेल खाती हैं तो true, अन्यथा false।
संबंधित देखें
- Class String
- Enum StringComparison
- Class String
- Namespace System
- Library Aspose.Page for C++
String::Equals(const String&, const String&) method
इक्वल दो स्ट्रिंग्स की तुलना ऑर्डिनल तुलना मोड का उपयोग करके करता है।
static bool System::String::Equals(const String &strA, const String &strB)
| पैरामीटर | प्रकार | विवरण |
|---|---|---|
| strA | const String& | तुलना करने के लिए पहली स्ट्रिंग। |
| strB | const String& | तुलना करने के लिए दूसरी स्ट्रिंग। |
ReturnValue
यदि स्ट्रिंग्स मेल खाती हैं तो true, अन्यथा false।
संबंधित देखें
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::Equals(const String&, const String&, System::StringComparison) method
इक्वल दो स्ट्रिंग्स की तुलना करता है।
static bool System::String::Equals(const String &strA, const String &strB, System::StringComparison comparison_type)
| पैरामीटर | प्रकार | विवरण |
|---|---|---|
| strA | const String& | तुलना करने के लिए पहली स्ट्रिंग। |
| strB | const String& | तुलना करने के लिए दूसरी स्ट्रिंग। |
| comparison_type | System::StringComparison | Comparison मोड। |
ReturnValue
यदि स्ट्रिंग्स मेल खाती हैं तो true, अन्यथा false।
संबंधित देखें
- Class String
- Enum StringComparison
- Class String
- Namespace System
- Library Aspose.Page for C++