String.compareTo()

설명

두 스트링을 비교하여 하나가 다른 하나보다 먼저 오는지, 같은지 테스트한다. 스트링은 문자마다 비교되며, 문자의 아스키 값을 사용한다. 즉, 예를들어, 'a'는 'b'앞에 오지만 'A'뒤에 온다. 숫자는 문자 앞에 온다.

문법

myString.compareTo(myString2)

매개변수

  • myString: 스트링 형 변수
  • myString2: 스트링 형 다른 변수

반환값

  • 음수: myString 이 myString2 앞에
  • 0: myString 이 myString2 와 같음
  • 양수: myString 이 myString2 뒤에

예제 코드

void setup() { Serial.begin(9600); String myString = "Arduino"; String myString2 = "ArduinoGetStarted.com"; int result = myString.compareTo(myString2); Serial.println(result); } void loop() { }

시리얼 모니터에 결과:

COM6
Send
-71
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