> -----Original Message-----
> From: Carlos [mailto:angus quovadis.com.ar]
> Sent: Friday, May 19, 2006 1:12 AM
> To: ruby-core ruby-lang.org
> Subject: Re: String#nstrip ?
>
>
> Getting STRING[0..(STRING.index(0.chr) || 0)-1]:
>
> > STRING.split("\0").first
>
> > STRING[0 .. STRING.index(0.chr)-1]
>
> > STRING.scan(/^[^\000]+/).first
>
> > STRING[/^.*?(?=\0)/]
>
> > STRING[ /^[^\0]*/ ]
>
> And the canonical (?):
>
> STRING.unpack("Z*")[0]
A little slower than the regex solutions, but not much.
Good to know,
though.
Dan
This communication is the property of Qwest and may contain
confidential or
privileged information. Unauthorized use of this
communication is strictly
prohibited and may be unlawful. If you have received this
communication
in error, please immediately notify the sender by reply
e-mail and destroy
all copies of the communication and any attachments.
|