Why does "strcmp" sometimes return non-equal when apparently they are the same?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
MathWorks Support Team
il 30 Ott 2024
Risposto: MathWorks Support Team
il 31 Ott 2024
Why does "strcmp" sometimes return non-equal when apparently the strings are the same?
Risposta accettata
MathWorks Support Team
il 30 Ott 2024
This could be caused by the presence of invisible Unicode characters.
Many invisible characters that can appear as a space when printed, but there are also characters like the Zero-Width Non-breaking Space (ZWNBSP; Unicode char U+FEFF) that are completely invisible and don't take up space.
It can happen that such characters are read from data sources and can lead to unexpected behavior for example with string comparison.
Even when they are invisible, they can still be filtered out by the strrep function:
Identifying that such a character is present is probably the biggest challenge when such an issue is found or noticed. The strlength function accounts for such characters.
See the attached example that is using the mentioned ZWNBSP.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Startup and Shutdown in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!