Giter Site home page Giter Site logo

Comments (4)

fobbyal avatar fobbyal commented on June 19, 2024 1

@Kilosh

I have a working solution here.. it is not pretty but it works and also you need java 8 for this.

    private static final Set<String> defaultVariables;
    private static final Set<String> defaultOperators;

    static {
        TreeSet<String> defaults = new TreeSet<>(String.CASE_INSENSITIVE_ORDER);
        Expression exp = new Expression("1+1");
        defaults.addAll(exp.getDeclaredFunctions());
        //defaults.addAll(exp.getDeclaredOperators());
        defaults.addAll(exp.getDeclaredVariables());
        defaultVariables = Collections.unmodifiableSet(defaults);
        defaultOperators = exp.getDeclaredOperators();
    }

    public static Set<String> parseForVars(String formulaExpression) {
        formulaExpression = replaceFunctions(formulaExpression, defaultVariables);
        formulaExpression = replaceOperators(formulaExpression, defaultOperators);
        log.debug("transformed {}", formulaExpression);
        formulaExpression = formulaExpression.replace('(', ',');
        formulaExpression = formulaExpression.replace(')', ',');
        formulaExpression = formulaExpression.replaceAll("\\s+", ",");
        log.debug("formulaExpression {}", formulaExpression);
        return Collections.unmodifiableSet(
                Stream.of(formulaExpression.split(","))
                        .map(String::trim)
                        .filter(v -> !v.matches("-?\\d+(.\\d+)?"))
                        //.filter(v -> !v.matches("\\w+"))
                        .filter(v -> v.length() != 0)
                        .collect(Collectors.toCollection(() -> new TreeSet<>(String.CASE_INSENSITIVE_ORDER))));
    }

    public static String replaceFunctions(String str, Set<String> val) {
        for (String op : val) {
            str = str.replaceAll("(?i)\\b" + Pattern.quote(op) + "\\b", ",");
        }
        return str;
    }

    public static String replaceOperators(String str, Set<String> val) {
        for (String op : val) {
            str = str.replace(op, ",");
        }
        return str;
    }

from evalex.

uklimaschewski avatar uklimaschewski commented on June 19, 2024

This should be very easy to implement, simply extract anything that is not a function, operator, (, ), , or a constant number:

    public List<String> getUsedVariables() {
        List<String> result = new ArrayList<String>();
        Tokenizer tokenizer = new Tokenizer(expression);
        while (tokenizer.hasNext()) {
            String token = tokenizer.next();
            if (functions.containsKey(token) || operators.containsKey(token)
                    || token.equals("(") || token.equals(")")
                    || token.equals(",") || isNumber(token)) {
                continue;
            }
            result.add(token);
        }
        return result;
    }

from evalex.

Kilosh avatar Kilosh commented on June 19, 2024

Thanks. Took your implementation. You are missing to check on the constants "PI", "TRUE", and "FALSE".

from evalex.

uklimaschewski avatar uklimaschewski commented on June 19, 2024

I implemented the function in commit b35f03c

from evalex.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.