Displaying 4 results from an estimated 4 matches for "ungreedy".
Did you mean:
greedy
2020 Jan 23
1
Bug: Regex doesn't match ungreedy
Hello,
first the mandatory dovecot specs:
- dovecot 2.3.9.2-1
- Operating system: Archlinux
- x84 cpu
- ext4 filesystem
My problem is that the sieve regex filter doesn't seem to match
ungreedely so the regex:
^(Re: |)\\[(.*?)\\/(.*?)\\]
evaluates the last capturing group of
[matrix-org/synapse] [Don't merge!!] Backport fix for MAU limits to
v1.8.0? (#6763)
to
synapse]
2006 Nov 29
1
Extract some character from a character vector of length 1
the content of th character vector (of length 1) is as follows:
a <- "something2 ....pat1 name1 pat2 something2....pat1 name2
pat2....pat1 name3 pat2 "
I would like to extract the character bewteen pat1 and pat2. That's to
say, I would like to get a vecter of c("name1", "name2","name3").
What I did is use strsplit() twise. But I wonder if there
2007 Sep 11
2
Function to get a sequence of months
Hi all,
I am looking for a function for following calculation.
start.month = "July"
end.month = "January"
months = f(start.month, end.month, by=1)
* f is the function that I am looking for.
Actually I want to get months = c("July", "August",.............."January")
If start.month = 6 and end.month = 1 then I could use (not properly) seq()
2007 Dec 12
4
Route and patterns
In a wiki, routes are handling
web_index /:web {:controller=>"wiki", :action=>"index"}
web_topic /:web/:topic {:controller=>"wiki", :action=>"view"}
action /:web/:topic/:action {:controller=>"wiki"}
That is the default action is "view".
Two questions:
1. Can I constrain the patterns allowed for