Re: [racket-users] Racket Solution of String Recursive Replace

2015-09-20 Thread sagyo12341234
2015年9月17日木曜日 2時26分58秒 UTC+9 Jens Axel Søgaard:
> > (regexp-replace "B" "BBB" "A")
> "ABB"
> > (regexp-replace* "B" "BBB" "A")
> "AAA"
> 
> 
> Notice the star.
> 
> 
> 
> 
> 2015-09-16 19:21 GMT+02:00  :
> Hi,
> 
> 
> 
> I aim to write a racket script like a bash.
> 
> 
> 
> $ echo "BBB" | sed -r 's/A/B/g'
> 
> BBB
> 
> 
> 
> In racket regexp module, I cannot find the solution.
> 
> Please help me.
> 
> 
> 
> --
> 
> You received this message because you are subscribed to the Google Groups 
> "Racket Users" group.
> 
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to racket-users...@googlegroups.com.
> 
> For more options, visit https://groups.google.com/d/optout.
> 
> 
> 
> 
> 
> -- 
> 
> -- 
> Jens Axel Søgaard

Thank you a lot.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [racket-users] Racket Solution of String Recursive Replace

2015-09-16 Thread Jens Axel Søgaard
> (regexp-replace "B" "BBB" "A")
"ABB"
> (regexp-replace* "B" "BBB" "A")
"AAA"

Notice the star.


2015-09-16 19:21 GMT+02:00 :

> Hi,
>
> I aim to write a racket script like a bash.
>
> $ echo "BBB" | sed -r 's/A/B/g'
> BBB
>
> In racket regexp module, I cannot find the solution.
> Please help me.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to racket-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
-- 
Jens Axel Søgaard

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.