String.equals()

설명

두 스트링이 같은지 비교. 대소문자 구별, 즉 "hello"는 "HELLO"와 같지 않다.

문법

myString.equals(myString2)

매개변수

  • myString, myString2: 스트링 형 변수

반환값

  • myStringmyString2 와 같으면 true를, 아니라면 false를 반환합니다

예제 코드

void setup() { Serial.begin(9600); String myString = "Arduino"; if (myString.equals("Arduino")) Serial.println("Two strings is equal to each other"); else Serial.println("Two strings is NOT equal to each other"); } void loop() { }

시리얼 모니터에 결과:

COM6
Send
Two strings is equal to each other
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

※ 주의 및 경고:

If the string is modified, it is highly recommended using String.reserve() to prevent the memory fragmentation issue

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.

※ OUR MESSAGES