This also seems to apply to strings used for Char variable tests, with at least IDE 5.5?
"""" should end up as a just one <doublequote>.
This comparison works in 5.5 in debug (Legacy tested), but in release it fails, while
does work in release.
Note: question moved from https://www.b4x.com/android/forum/threads/weird-behaviour-in-debug-mode-why.61715/#post-394382
B4X:
Dim c as Char
If c = """" Then ...
This comparison works in 5.5 in debug (Legacy tested), but in release it fails, while
B4X:
If c = CHR(34) Then ...
Note: question moved from https://www.b4x.com/android/forum/threads/weird-behaviour-in-debug-mode-why.61715/#post-394382