|
|
Browse by Tags
All Tags » regular expression
Showing page 1 of 6 (54 total posts)
-
bob.aldrich:
> but I would like it to fail if it finds a closing “/style” tag, before it finds the “refStyle” ,
> I was hoping the {1} would limit the result to just include the reference to style> only once. Here is a quick script. Thanks for attaching the input sample - makes it ...
-
Recently upgraded a Cognos reporting environment with over 4000 reports specifications stored in XML. There are certain style functions that have been deprecated and my task is to find them and replace with the current function. My attempt to search for specfic style references is returning more data than desired. ...
-
I need some help parsing this string:
STRING:
RN00166
ABThe pulmonary macrophages collected with bronchial mucus from
patients with cystic fibrosis and other chronic lung diseases were
investigated histochemically for acid phosphatase,
beta-glucuronidase and beta-glucosaminidase activity, and also for
mucopolysaccharide content. In ...
-
I could really use some expert help. I’ve got this formula that will filter out just screen resolutions for mobile devices within Google Analytics, now I want to build a regex that filters screen resolutions for ranges 600-800 and then another that filers 1024-1600 and another for 1600+ This way it will allow me to group my visitors ...
-
You should consider biterscripting ( http://www.biterscripting.com ) . It is great for parsing.
Just read the file into a string variable, then parse it away using any of their stream editor commands.
var str input ; "file.txt > $input To get everything upto the first dot (.), usestex "]^.^1" ...
-
I'm needing to validate a email address, and website url's for user registration for my site.
Here are the requirements for the Email
1. Email address must be between 9-50 characters long
2. @ must be required
Here is the rest of the requirements:
Email address must begin with alphanumeric characters a-z and 0-9 with ...
-
In order to expedite an answer to your question, please provide as much of the following information as possible
What programming language/platform or application are you using?
What is your ultimate task? What are you working on and what you want to use a Regular Expression for in your planned solution.
Describe your Regular ...
-
Hi All,
I need this regular expression very urgent.
I have used this one.<TR>TR><TD class="text" width="15%">SOD</TD><TD class="text" width="15%">SOD</TD><TD><asp:textbox id="txtSOD" runat="server" CssClass="text" ...
-
Hi there.
I need to regular expression to evaluate this URL setup:
http://www.website.com/part-1/part-2/part-3/part-4/some-here-amt-varies-924/
What I need that to evaluate to is /url.asp?id=924. This is for ISAPI URL Re-Write. Something like this:
^/part-1/part-2/part-3/part-4/some-here-amt-varies-924/ url.asp?id=$5
I just ...
-
Hi,
I need to replace all the images in html with [Image: 1.jpg] format. The following regex is replacing the images where image tag is like <img src='1.jpg'>. Its not working if the img tag has more attributes like alt, width etc.
string pattern = ...
1 ...
|
|
|