0
votes
1answer
16 views
Getting all mailto links with jQuery
I need a pattern that will traverse the document and get me all links that have mailto in their href:
<a href="mailto:an@email.com">text</a>
I could of course easily …
0
votes
5answers
44 views
Problem in using Sed to remove leading and trailing spaces
Hi all,
I am using the following code to remove both leading and tailing spaces from all lines of a file A.txt
sed 's/^[ \t]*//;s/[ \t]*$//' ./A.txt > ./B.txt
The problem occu …
4
votes
2answers
97 views
Is it possible to match with decomposed sequences in F#?
I seem to remember an older version of F# allowing structural decomposition when matching sequences just like lists. Is there a way to use the list syntax while keeping the sequen …
3
votes
1answer
89 views
Pattern matching data types in Haskell. Short cuts?
In the following Haskell code, how can this be written more succinctly? Is it necessary to list all four conditions, or can these be summarized by a more compact pattern? For ins …
0
votes
2answers
55 views
MySQL string match with multiple words
This page has a great example using REGEXP to do pattern matching. the problem with REGEXP won't match the following strings:
"Mr John"
"Dr. John"
or even:
"Mr. John Doe"
with …
1
vote
3answers
133 views
Python file manipulation
Assume I have such folders
rootfolder
|
/ \ \
01 02 03 ....
|
13_itemname.xml
So under my rootfolder, each directory represents a month like 01 02 03 and …
1
vote
2answers
32 views
Get String That Matches Wildcard in PHP
I need a very specific function in PHP. Basically, I have two strings as arguments, one of which is a pattern that contains wildcards of variable length (*), and one of which is a …
2
votes
1answer
79 views
F# String Pattern-Matching with Wildcards
As part of a project I have assigned myself as a way of improving my knowledge of F# and functional programming in general, I am attempting to write a string pattern-matching algor …
0
votes
4answers
113 views
Regular expression to match empty HTML tags that may contain embedded JSTL?
I'm trying to construct a regular expression to look for empty html tags that may have embedded JSTL. I'm using Perl for my matching.
So far I can match any empty html tag that d …
0
votes
3answers
104 views
There is some way to do this string extraction faster?
I need to extract the virtual host name of a HTTP request.
Since this willl be done for every request, I´m searching for the fastest way to do this.
The following code and times a …
1
vote
3answers
75 views
Erlang Pattern matching with aliases
Hi, is there a possibility to match in a function definition do some subset of a touple and still get get complete touple in the method ?
What I would like to do is something like …
4
votes
3answers
71 views
Automatically finding numbering patterns in filenames
Hi all,
Intro
I work in a facility where we have microscopes. These guys can be asked to generate 4D movies of a sample: they take e.g. 10 pictures at different Z position, then …
0
votes
3answers
107 views
Expression To Test That All Items In Sequence Are The Same
Hi all,
Is there a multiple instances pattern in F# somewhere?
Consider that I'm working on a list. I have the following pattern matching
match l with
| [] | [_] -> l //if …
1
vote
4answers
86 views
Regex PHP, Match all links with specific text.
Hi,
I am looking for a regular expression in PHP which would match the anchor with a specific text on it. E.g I would like to get anchors with text mylink like:
<a href="blabla …
3
votes
6answers
260 views
How can I code this problem? (C++)
I am writing a simple game which stores datasets in a 2D grid (like a chess board). Each cell in the grid may contain a single integer (0 means the cell is empty). If the cell cont …
