Displaying 4 results from an estimated 4 matches for "unclever".
Did you mean:
unclear
2010 Aug 20
4
Regex exercise
...adline prompt):
"1 2 -5, 3- 6 4 8 5-7 10" ## only integers will be entered
parse it to produce the numeric vector:
c(1, 2, 3, 4, 5, 3, 4, 5, 6, 8, 5, 6, 7, 10)
Note that "-" in the expression is used to indicate a range of values
instead of ":"
Here's my UNclever solution:
First convert more than one space to a single space and then replace
"<any spaces>-<any spaces>" by ":" by:
> x1 <- gsub(" *- *",":",gsub(" +"," ",resp)) #giving
> x1
[1] "1 2:5, 3:6 4 8 5:7 10"...
2014 Nov 05
2
apache 2.4.10 error on centos 5.7
Hey guys,
I realize this release is a little old. But I'm hoping to get some help
with this anyway if that's cool.
This is my employer's box and I don't have the option of upgrading it.
I installed apr 1.5.1 and apr-util 1.5.4. Then downloaded the source for
apache 2.4.10 for a project that I'm working on.
I gave these configure flags along with make and install
[root at
2000 Jun 13
1
Re: [livid-ovd] putting the video into ogg multimedia
I'll get to the technical aspects of these letters in a bit; they require an a
little thought and I'm knee deep in the codebook engine right now...
> <RANT>
>
> I personally favor the MNG approach over the Ogg strategy because of the way
> the licensing agreements read. Ogg is more like "you are free to use this,
> just don't change it without our
2010 Aug 24
0
mlm for within subject design
...8 5-7 10" ## only integers will be entered
>
> parse it to produce the numeric vector:
>
> c(1, 2, 3, 4, 5, 3, 4, 5, 6, 8, 5, 6, 7, 10)
>
> Note that "-" in the expression is used to indicate a range of values
> instead of ":"
>
> Here's my UNclever solution:
>
> First convert more than one space to a single space and then replace
> "-" by ":" by:
>
>> x1 <- gsub(" *- *",":",gsub(" +"," ",resp)) #giving
>> x1
> [1] "1 2:5, 3:6 4 8 5:7 10" #...