newLISP Fan Club

Forum => Anything else we might add? => Topic started by: ssqq on August 02, 2016, 07:45:47 AM

Title: char "{" could not write in char class with {..}
Post by: ssqq on August 02, 2016, 07:45:47 AM

> {[{]}

ERR: string token too long : "[{]}"
> {[{]}

ERR: string token too long : "[\{]}"
;; nnn also could not recognize in {..}
> {123}
"\123"

Title: Re: char "{" could not write in char class with {..}
Post by: ssqq on August 02, 2016, 10:10:31 AM

> {[Q{E]}
ERR: string token too long : "[\Q{\E]}"
> {[Q{E]}
ERR: string token too long : "[\Q\{\E]}"
Title: Re: char "{" could not write in char class with {..}
Post by: ssqq on August 02, 2016, 10:15:59 AM
But if code is in file, it is OK.



ssqq@X61:~/spp-newlisp$ cat debug.lsp
(constant 'say println)

(define (regex-str-char @str)
  (replace {([Q()[]{}|.+*?^$E])} @str (string {} $1) 0))

(say (regex-str-char "{}()"))

(exit)
ssqq@X61:~/spp-newlisp$ newlisp debug.lsp
{}()