Search found 1 match
- Mon Aug 24, 2020 5:41 pm
- Forum: ESP32 Arduino
- Topic: WString.cpp
- Replies: 1
- Views: 2529
WString.cpp
Using the functions in WString.cpp I have run into a problem with .substring usage. The function does not work correctly. With: String sInString = "P255" String sOutString; sOutString = sInString.substring(1,3); // should return "255", actually returns "25" sOutString = sInString.substring(1,4); // ...