Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trim() function (and trim_left/trim_right) has state that affects next invocations #92

Closed
hell-racer opened this issue Apr 25, 2023 · 0 comments

Comments

@hell-racer
Copy link
Contributor

Consider the following test:

[Fact]
public void TrimTest()
{
    const string json = "{\"a\": \"b c\"}";
    const string expression = "trim(a, 'c') | trim(@)";
    const string expected = "b";

    Assert(expression, json, expected);
}

This fails because the second argument (characters) is saved into local field and then used for the next invocations. If I change expression to trim(a, 'c') | trim(@, ' '), the test passes.

springcomp added a commit that referenced this issue Apr 27, 2023
springcomp added a commit that referenced this issue Apr 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant