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
When the first field in a pattern is missing from an input (e.g., the input begins with the delimiter that is meant to follow the first field), the entire input is captured to the last field in the pattern:
When the first field in a pattern is missing from an input (e.g., the input begins with the delimiter that is meant to follow the first field), the entire input is captured to the last field in the pattern:
pattern:
%{f1};%{f2};%{f3};%{f4}
input:
;;3;4
expect:
{"f1":"", "f2":"", "f3":"3", "f4":"4"}
actual:
{"f1":"", "f2":"", "f3":"", "f4":";;3;4"}
Below is an additonal test-case to add to the compatibility suite:
The text was updated successfully, but these errors were encountered: