ee.String.equals
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
ตรวจสอบว่าสตริงเท่ากับออบเจ็กต์ที่กำหนดหรือไม่ แสดงผลเป็น "จริง" หากเป้าหมายเป็นสตริงและเท่ากับข้อมูลอ้างอิงตามพจนานุกรม หรือแสดงผลเป็น "เท็จ" ในกรณีอื่นๆ
การใช้งาน | การคืนสินค้า |
---|
String.equals(target) | บูลีน |
อาร์กิวเมนต์ | ประเภท | รายละเอียด |
---|
ดังนี้ reference | สตริง | สตริงที่จะเปรียบเทียบเพื่อหาความเท่ากัน |
target | วัตถุ | ออบเจ็กต์ที่ 2 ที่จะตรวจสอบความเท่ากัน |
ตัวอย่าง
โปรแกรมแก้ไขโค้ด (JavaScript)
var sp = ee.String('Abies grandis');
print('"Abies grandis" equals "Abies grandis"?', sp.equals('Abies grandis'));
print('"Abies grandis" equals "abies grandis"?', sp.equals('abies grandis'));
print('"Abies grandis" equals "Thuja plicata"?', sp.equals('Thuja plicata'));
การตั้งค่า Python
ดูข้อมูลเกี่ยวกับ Python API และการใช้ geemap
เพื่อการพัฒนาแบบอินเทอร์แอกทีฟได้ที่หน้า
สภาพแวดล้อม Python
import ee
import geemap.core as geemap
Colab (Python)
sp = ee.String('Abies grandis')
print('"Abies grandis" equals "Abies grandis"?',
sp.equals('Abies grandis').getInfo())
print('"Abies grandis" equals "abies grandis"?',
sp.equals('abies grandis').getInfo())
print('"Abies grandis" equals "Thuja plicata"?',
sp.equals('Thuja plicata').getInfo())
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-26 UTC
[null,null,["อัปเดตล่าสุด 2025-07-26 UTC"],[[["\u003cp\u003eThe \u003ccode\u003eequals()\u003c/code\u003e method checks if a given string is lexicographically equal to another object.\u003c/p\u003e\n"],["\u003cp\u003eIt returns \u003ccode\u003etrue\u003c/code\u003e if the target object is a string and has the same characters in the same order as the reference string, otherwise it returns \u003ccode\u003efalse\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe method is case-sensitive, meaning "Abies grandis" is not equal to "abies grandis".\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eequals()\u003c/code\u003e method can be used with both client-side (JavaScript) and server-side (Python) Earth Engine APIs.\u003c/p\u003e\n"]]],[],null,["# ee.String.equals\n\nChecks for string equality with a given object. Returns true if the target is a string and is lexicographically equal to the reference, or false otherwise.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------|---------|\n| String.equals`(target)` | Boolean |\n\n| Argument | Type | Details |\n|-------------------|--------|------------------------------------------|\n| this: `reference` | String | The string to compare for equality. |\n| `target` | Object | The second object to check for equality. |\n\nExamples\n--------\n\n### Code Editor (JavaScript)\n\n```javascript\nvar sp = ee.String('Abies grandis');\n\nprint('\"Abies grandis\" equals \"Abies grandis\"?', sp.equals('Abies grandis'));\nprint('\"Abies grandis\" equals \"abies grandis\"?', sp.equals('abies grandis'));\nprint('\"Abies grandis\" equals \"Thuja plicata\"?', sp.equals('Thuja plicata'));\n```\nPython setup\n\nSee the [Python Environment](/earth-engine/guides/python_install) page for information on the Python API and using\n`geemap` for interactive development. \n\n```python\nimport ee\nimport geemap.core as geemap\n```\n\n### Colab (Python)\n\n```python\nsp = ee.String('Abies grandis')\n\nprint('\"Abies grandis\" equals \"Abies grandis\"?',\n sp.equals('Abies grandis').getInfo())\nprint('\"Abies grandis\" equals \"abies grandis\"?',\n sp.equals('abies grandis').getInfo())\nprint('\"Abies grandis\" equals \"Thuja plicata\"?',\n sp.equals('Thuja plicata').getInfo())\n```"]]