(set-info :smt-lib-version 2.6) (set-logic QF_SLIA) (set-option :strings-exp true) (set-info :status sat) (declare-const x String) (declare-const y String) (declare-const m String) (declare-const n String) (assert (str.in.re x (re.+ (re.range "0" "9")))) (assert (= 0 (str.to.int x))) (assert (not (= x ""))) (assert (not (= x "0"))) (assert (not (= x "3"))) (assert (not (= x "T"))) (assert (not (= x "8"))) (assert (not (= x ""))) (assert (not (= x "5"))) (assert (not (= x "<"))) (assert (not (= x "N"))) (check-sat)