|
|
Browse by Tags
All Tags » html
Showing page 1 of 4 (38 total posts)
-
I'm editing an old bookmarks.html file in Dreamweaver to prep it before I import the bookmarks back into Firefox. An example bookmark would look like this:
<DT><A href="http://isohunt.com/" ADD_DATE="1125111393" LAST_VISIT="1207867025" ...
-
Hi,
can anybody help me with regex to match this:
http://www.google.com/level1/name.html
so something like match all between last ocurance of "/" and ".html"
Thanks in advance,
Cash
p.s. sorry on noob question :)
-
<meta name="keywords" content="IBM 7976KAG SYSTEM X3400 QC 1.60GHZ 2GB 3X73,sunucular, server, markalı sunucular, markalı server, hp sunucular, hp, ibm, ibm sunucular, ibm server, century server, century sunucular">
<meta name="description" content="Fiyat:1879$+KDV | Kdv Dahil:2.877,95YTL | Havale ile %3 ...
-
hi every one .. I want to parse product name , price from source kod of web site by using C#. Example in that code I want to take PANASONIC BB-HCM515CE CCD MEGAPIKSEL POE VIDEO, 838,8 € + KDV,2.081,52 YTL,Havaleye %3 İndirim: with 2.019,07 YTL. But that code is not just between the ...
-
Greetings.
I have some problems using a Regex replace for converting the following BBCode:
string bbCode = " [ color=red]Red[/color]";
Regex regExp = new Regex(@"\[ color=([^\]]+)\]([^\]]+)\[\/color\]");
string htmlCode = regExp.Replace(bbCode, "<span style=\'color: $1\'>$2</span>');
Essentially, ...
-
Hi everyone
<span class="FiyatSmallBlackBack"><b>Bizde:</b></span><span class="FiyatSmallBlue"><b> 26,00 USD + KDV</b></span> <br />
In that HTML I want to parse 26,00 USD +KDV using c# but that html could be as that ; (no +KDV just 26,00 ...
-
Hey all,
Before I start, I just want to say that below you will find a modifier of "U". I know a lot of people say this should not be used, so if there is a way that my issue can be resolved where the U modifier won't be needed, great!
Language: PHP (4)
Users submit content via a wysiwyg ...
-
Hi,
I need help to parse a few thousand documents with C# and regex. I will have a string with the complete content of a document and want to fill an array with the matches of my regex (the value of the backreference shall be added into the array).
Example:
Content: blabla<br><span class=txtClass>Some <b>Text</b> - ...
-
[deleted, see last posting]
-
Matching HTML (or XML) fragments can be a very difficult thing. If you can't resort to a cleaner technique like transforming (X)HTML with XSLT and need to stay with string replacements, then you have to take care of all sorts of mischief that you might encounter in the input.
That said, the easiest I can imagine is to just apply the regex you ...
1
|
|
|