Re: Append a # and a string

2011-02-13 Thread Christopher Maggio
Thanks, just what i was looking for! -Chris On Feb 13, 9:04 pm, Fred Concklin wrote: > Christopher Maggio writes: > > Hi, clojure newbie here; > > > I have a quick question, I am writing a small pattern matching program > > and I can't figure out how to append a string to a # for re-matcher: >

Re: Append a # and a string

2011-02-13 Thread Fred Concklin
Christopher Maggio writes: > Hi, clojure newbie here; > > I have a quick question, I am writing a small pattern matching program > and I can't figure out how to append a string to a # for re-matcher: Not quite following, but check out re-pattern (http://clojuredocs.org/clojure_core/clojure.core/r

Append a # and a string

2011-02-13 Thread Christopher Maggio
Hi, clojure newbie here; I have a quick question, I am writing a small pattern matching program and I can't figure out how to append a string to a # for re-matcher: (.replaceAll (re-matcher #"ATGCCC" my_String) replacement_String) When I try (string? #"ATGCCC") it returns false. # isnt a macro