get_string method

Z3_string get_string(
  1. Z3_context c,
  2. Z3_ast s
)

\brief Retrieve the string constant stored in \c s. Characters outside the basic printable ASCII range are escaped.

\pre Z3_is_string(c, s)

def_API('Z3_get_string', STRING, (_in(CONTEXT), _in(AST)))

Implementation

Z3_string get_string(
  Z3_context c,
  Z3_ast s,
) {
  return _get_string(
    c,
    s,
  );
}