You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the REPL, if you evaluate a string starting with a digit, that is followed at some point by a non-digit non-bracket, which is followed at some point by a forward slash, a NumberFormatException is thrown. However, this exception does not seem to halt anything, because it ultimately returns the correct result.
If it helps to conceptualize, I think the following regex would match any strings for the bug occurs: #"[0-9]+[^{}]+/.*"
This bug does not occur if the string is produce through an expression, rather than writing it by hand.
In the REPL, if you evaluate a string starting with a digit, that is followed at some point by a non-digit non-bracket, which is followed at some point by a forward slash, a NumberFormatException is thrown. However, this exception does not seem to halt anything, because it ultimately returns the correct result.
If it helps to conceptualize, I think the following regex would match any strings for the bug occurs: #"[0-9]+[^{}]+/.*"
This bug does not occur if the string is produce through an expression, rather than writing it by hand.
For example:
The text was updated successfully, but these errors were encountered: