Equivalence

Analyze if the two provided terms are equivalent.

Request

curl -X POST "https://api.regexsolver.com/api/analyze/equivalence" \
    -H "Authorization: Bearer $REGEX_SOLVER_API_TOKEN" \
    -H "Content-Type: application/json" \
    -d '{"terms":[{"type":"regex","value":"(abc|de)"},{"type":"regex","value":"(abc|de)*"}]}'

Response

{
  "type": "boolean",
  "value": false
}