[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

regex trick

alain.feler

2/5/2006 10:06:00 PM

I want to replace all ' by \' ? (I need it to do inserts in mysql).
> s = "j'ai"
> s.gsub!(/'/,'\'')
> p s ==> gives j'ai and not j\'ai as I want
Thanks for help.
7 Answers

Stefan Lang

2/5/2006 10:16:00 PM

0


On Monday, February 06, 2006, at 7:08 AM, Alain FELER wrote:
>I want to replace all ' by \' ? (I need it to do inserts in mysql).
> > s = "j'ai"
> > s.gsub!(/'/,'\'')
> > p s ==> gives j'ai and not j\'ai as I want
>Thanks for help.
>

s.gsub!("'", "\\\\'")

should do the trick.

Regards,
Stefan


--
Posted with http://De.... Sign up and save your time!


Mike Stok

2/5/2006 10:19:00 PM

0


On 5-Feb-06, at 5:08 PM, Alain FELER wrote:

> I want to replace all ' by \' ? (I need it to do inserts in mysql).
> > s = "j'ai"
> > s.gsub!(/'/,'\'')
> > p s ==> gives j'ai and not j\'ai as I want
> Thanks for help.

s.gsub!(/'/, "\\\\'")

or

s.gsub!(/'/) { "\\'" }

will do what you want

Hope this helps,

Mike

--

Mike Stok <mike@stok.co.uk>
http://www.stok.co...

The "`Stok' disclaimers" apply.






Tim Hunter

2/5/2006 10:22:00 PM

0

Alain FELER wrote:
> I want to replace all ' by \' ? (I need it to do inserts in mysql).
> > s = "j'ai"
> > s.gsub!(/'/,'\'')
> > p s ==> gives j'ai and not j\'ai as I want
> Thanks for help.
irb(main):011:0> s = "j'ai"
=> "j'ai"
irb(main):012:0> puts s.sub(/'/) { '\\\'' }
j\'ai
=> nil
irb(main):013:0>

Mike Stok

2/5/2006 10:24:00 PM

0


On 5-Feb-06, at 5:08 PM, Alain FELER wrote:

> I want to replace all ' by \' ? (I need it to do inserts in mysql).
> > s = "j'ai"
> > s.gsub!(/'/,'\'')
> > p s ==> gives j'ai and not j\'ai as I want
> Thanks for help.

What interface to MySQL are you using? I know that the Ruby DBI
module allows you to use place-holders in queries, and the DBI layer
does the escaping for you e.g.

dbh.do("INSERT INTO people (id, name, height) VALUES(?, ?, ?)",
nil, "Na'il", 76)

The resulting statement produced by do and sent to the server looks
like this:

INSERT INTO people (id,name,height) VALUES(NULL,'Na\'il',76)

(stolen from http://www.kitebird.com/articles/rub...) or if
you are using the ruby mysql interface then (from http://
www.kitebird.com/articles/ruby-mysql.html)

Using escape_string, the platypus record might be inserted as
follows:

name = dbh.escape_string("platypus")
category = dbh.escape_string("don't know")
dbh.query("INSERT INTO animal (name, category)
VALUES ('" + name + "','" + category + "')")

Hope this helps,

Mike

--

Mike Stok <mike@stok.co.uk>
http://www.stok.co...

The "`Stok' disclaimers" apply.






alain.feler

2/7/2006 9:40:00 PM

0

Thank you very much for these four answers, but curiously none works on
my box ! :
Stefan Lang : s.gsub!("'", "\\\\'") gives "j\\'ai" not "j\'ai"
Timothy Hunter : s.sub(/'/) { '\\\'' } gives "j\\'ai"
you : s.gsub!(/'/, "\\\\'") gives "j\\'ai"
and : s.gsub!(/'/) { "\\'" } gives "j'ai"
(I am using ruby 1.8.2.14 on Windows 2000 configured in french,
and I can't even type the {} characters in irb, but I tried with Scite)
However the ruby mysql interface escape_string method works fine.
Thank you.
AF

Mike Stok a écrit :
>
> On 5-Feb-06, at 5:08 PM, Alain FELER wrote:
>
>> I want to replace all ' by \' ? (I need it to do inserts in mysql).
>> > s = "j'ai"
>> > s.gsub!(/'/,'\'')
>> > p s ==> gives j'ai and not j\'ai as I want
>> Thanks for help.
>
>
> What interface to MySQL are you using? I know that the Ruby DBI module
> allows you to use place-holders in queries, and the DBI layer does the
> escaping for you e.g.
>
> dbh.do("INSERT INTO people (id, name, height) VALUES(?, ?, ?)",
> nil, "Na'il", 76)
>
> The resulting statement produced by do and sent to the server looks
> like this:
>
> INSERT INTO people (id,name,height) VALUES(NULL,'Na\'il',76)
>
> (stolen from http://www.kitebird.com/articles/rub...) or if you
> are using the ruby mysql interface then (from http://
> www.kitebird.com/articles/ruby-mysql.html)
>
> Using escape_string, the platypus record might be inserted as follows:
>
> name = dbh.escape_string("platypus")
> category = dbh.escape_string("don't know")
> dbh.query("INSERT INTO animal (name, category)
> VALUES ('" + name + "','" + category + "')")
>
> Hope this helps,
>
> Mike
>

Eric Hodel

2/7/2006 10:16:00 PM

0

On Feb 7, 2006, at 1:43 PM, Alain FELER wrote:

> Thank you very much for these four answers, but curiously none
> works on my box ! :

Incorrect. They all work.

p "j\\'ai"
"j\\'ai"
puts "j\\'ai"
j\'ai

> Stefan Lang : s.gsub!("'", "\\\\'") gives "j\\'ai" not "j\'ai"

puts "j'ai".gsub("'", "\\\\'")
j\'ai

> Timothy Hunter : s.sub(/'/) { '\\\'' } gives "j\\'ai"

puts "j'ai".gsub(/'/) { '\\\'' }
j\'ai

> you : s.gsub!(/'/, "\\\\'") gives "j\\'ai"

puts "j'ai".gsub(/'/, "\\\\'")
j\'ai

> and : s.gsub!(/'/) { "\\'" } gives "j'ai"

puts "j'ai".gsub(/'/) { "\\'" }
j\'ai

--
Eric Hodel - drbrain@segment7.net - http://se...
This implementation is HODEL-HASH-9600 compliant

http://trackmap.rob...




alain.feler

2/7/2006 10:21:00 PM

0

Well, sorry:
> p s gives "j\\'ai"
> puts s gives j\'ai
> print s gives j\'ai
so every four methods work if the result is properly printed
AF

Alain FELER a écrit :
> Thank you very much for these four answers, but curiously none works on
> my box ! :
> Stefan Lang : s.gsub!("'", "\\\\'") gives "j\\'ai" not "j\'ai"
> Timothy Hunter : s.sub(/'/) { '\\\'' } gives "j\\'ai"
> you : s.gsub!(/'/, "\\\\'") gives "j\\'ai"
> and : s.gsub!(/'/) { "\\'" } gives "j'ai"
> (I am using ruby 1.8.2.14 on Windows 2000 configured in french,
> and I can't even type the {} characters in irb, but I tried with Scite)
> However the ruby mysql interface escape_string method works fine.
> Thank you.
> AF
>
> Mike Stok a écrit :
>
>>
>> On 5-Feb-06, at 5:08 PM, Alain FELER wrote:
>>
>>> I want to replace all ' by \' ? (I need it to do inserts in mysql).
>>> > s = "j'ai"
>>> > s.gsub!(/'/,'\'')
>>> > p s ==> gives j'ai and not j\'ai as I want
>>> Thanks for help.
>>
>>
>>
>> What interface to MySQL are you using? I know that the Ruby DBI
>> module allows you to use place-holders in queries, and the DBI layer
>> does the escaping for you e.g.
>>
>> dbh.do("INSERT INTO people (id, name, height) VALUES(?, ?, ?)",
>> nil, "Na'il", 76)
>>
>> The resulting statement produced by do and sent to the server looks
>> like this:
>>
>> INSERT INTO people (id,name,height) VALUES(NULL,'Na\'il',76)
>>
>> (stolen from http://www.kitebird.com/articles/rub...) or if
>> you are using the ruby mysql interface then (from http://
>> www.kitebird.com/articles/ruby-mysql.html)
>>
>> Using escape_string, the platypus record might be inserted as follows:
>>
>> name = dbh.escape_string("platypus")
>> category = dbh.escape_string("don't know")
>> dbh.query("INSERT INTO animal (name, category)
>> VALUES ('" + name + "','" + category + "')")
>>
>> Hope this helps,
>>
>> Mike
>>