0
votes
1answer
20 views
Preg_match - retrieving href
Hello all,
I have got stuck with a question I have just been helped on - its a new problem but only just slightly.
I have this preg_match to get the contents of href. Please don't tell me not to use …
0
votes
3answers
20 views
regular expression to match specific text not linked
I would like to write a regular expression in javascript to match specific text, only when it is not part of an html link, i.e.
match <a href="/link/page1">match text</a>
would not be …
1
vote
5answers
69 views
How do I check if a string has at least one number in it using Ruby?
I need to check to see if a string contains at least one number in it using Ruby (and I assume some sort of regex?).
How would I do that?
0
votes
3answers
38 views
Regex pattern match need help please
Hi There
I need some help with a regular expression, please help if you can
I have the following code: I am using Javascript and ASP
{In|inside|during|into|in the sphere
of} {this} …
1
vote
6answers
122 views
What does this regex mean?
What does this regular express mean. It is in an xml schema that I am using:
([!-~]|[ ])*[!-~]([!-~]|[ ])*
-Dave
2
votes
7answers
130 views
Can Regular Expressions Achieve This?
Hi, I'm trying to split a string into tokens (via regular expressions)
in the following way:
Example #1
input string: 'hello'
first token: '
second token: hello
third token: '
Example #2
input …
1
vote
4answers
56 views
Regular Expressions to insert “\r” every n characters in a line and before a complete word (basically a wordwrap feature)
I'm new to JavaScript and regular expression. I'm trying to automatically format a text document to specific number of characters per line or put a "\r" before the word.
This is functionally similar …
1
vote
2answers
49 views
Regex to strip symbols but not foreign characters in Ruby
Does anyone have a good regex for stripping all symbols (';.,_\$@!% the carriage return etc) from a string, without damaging any foreign characters (é 多 فا etc)? Non-regex would be even better, I …
4
votes
3answers
100 views
Building a “Semi-Natural Language” DSL in Ruby
I'm interested in building a DSL in Ruby for use in parsing microblog updates. Specifically, I thought that I could translate text into a Ruby string in the same way as the Rails gem allows …
2
votes
5answers
52 views
Getting some elements in a string using a regex
Context
Using Ruby I am parsing strings looking like this:
A type with an ID...
[Image=4b5da003ee133e8368000002]
[Video=679hfpam9v56dh800khfdd32]
...with between 0 and n additional options …
2
votes
5answers
98 views
Match domain name from url (www.google.com=google)
So I want to match just the domain from ether:
http://www.google.com/test/
http://google.com/test/
http://google.net/test/
Output should be for all 3: google
I got this code working for just .com
…
1
vote
2answers
28 views
Need a way to check to see if a wildcard string matches a given string in PHP
I am trying to figure out how to create a function where I can pass in two strings, one with wildcards and another that is checked to see if it matches the wildcard string.
$wildcard_string = …
0
votes
3answers
48 views
How to search functions with a certain number of parameters
Given the function name and the number of how many parameters the function has, how to list all the function definitions using egrep and regex?
For example, the name of the function is "find" we are …
2
votes
5answers
64 views
Problem with a regex
I want a regex that will match:
A type with an ID:
[Image=4b5da003ee133e8368000002]
[Video=679hfpam9v56dh800khfdd32]
With between 0 and n additional options separated with @:
…
1
vote
3answers
54 views
Parsing of data structure in a plain text file
How would you parse in Java a structure, similar to this
\\Header (name)\\\
1JohnRide 2MarySwanson
1 password1
2 password2
\\\1 block of data name\\\
1.ABCD
2.FEGH
3.ZEY
\\\2-nd block of …
