Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
exclude
- Page 1
exclude
Programming
Databases
15 Years Ago
by lifeworks
… was looking for some sort of Right Join which would
exclude
all products which have a match in the discount table…
Re: Exclude Specific row when exporting data from HTML table to excel
Programming
Web Development
11 Years Ago
by pixelsoul
… I was doing that I put in the option to
exclude
rows from the output. http://jsfiddle.net/pixelsoul/2MBDq/ Pretty… easy to use the plugin: $('#exportButton1').tableToExcel({ table: '#testTable',
exclude
: '.
exclude
', name: 'testing-export' }); Typically I would use some server side…
Re: Exclude Content From A Div id
Programming
Web Development
12 Years Ago
by blocblue
What exactly are you trying to accomplish? You say
exclude
some of it's content. Do you mean
exclude
? extract? The regex I wrote works with the source you included in your original post. What exactly is in `$displaybody`?? What's the content of `$matches`?
exclude comments using Regular Expressions
Programming
Software Development
17 Years Ago
by shuchimuley
Hi , I wanted to know how to write a c# code that reads from a file and counts the number of lines . This count should
exclude
the comments present eg : //this is test using System; should not count "//this is test" at all . Please can someone help me on this one Thanks shuchi
Exclude Content From A Div id
Programming
Web Development
12 Years Ago
by rakibtg
… what is the way to filter this fetch data and
exclude
some of its content which has this div id `<…
Exclude Specific row when exporting data from HTML table to excel
Programming
Web Development
11 Years Ago
by mushahidh
… 3 echo contains update/delete icons. I just want to
exclude
Action column when exporting the table content in excel. Any…
Re: exclude
Programming
Databases
15 Years Ago
by pritaeas
Something like this: [code] select * from product where id not in (select product_id from discount) [/code]
Re: exclude
Programming
Databases
15 Years Ago
by lifeworks
nice one! worked great.
Re: Exclude regex group within a group
Programming
Web Development
12 Years Ago
by minitauros
Thanks priteas! I know how that works, I'm just wondering how I can
exclude
a regex group within a regex group :). So if the container group matches, I want to fetch only part of that match (by using ?: to
exclude
it, because I need to know the order of the matches).
Re: Exclude regex group within a group
Programming
Web Development
12 Years Ago
by minitauros
… to match only last name and first name, but to
exclude
"last" and "first" from the capture…;last" or "first", and I want to
exclude
that "last" or "first" from the…
How to Exclude Some Result From a Particular Row of Table from Showing
Programming
Web Development
13 Years Ago
by deyesborn
… from a table of my database and I want to
exclude
results from particular users from being fetch together with others… miker 4 Mathew Denson Male denis etc How can i
exclude
results from the first two rows of ID 1 and…
[Safe PHP prevent overriding php.ini extension] how to exclude a user?
Hardware and Software
Linux and Unix
9 Years Ago
by basketmen
Hi guys, In WHM > Easyapache, there is this PHP extension : Safe PHP CGI - prevents users from overriding system php.ini my question, can i
exclude
a user from this, so the user can increase like memory_limit in they account? if not, is there alternative for this that allowed
exclude
a user?
calculate the date difference between two dates exclude the saturday and sunday
Programming
Software Development
17 Years Ago
by palcham
calculate the date difference between two dates
exclude
the saturday and sunday(Please dont calculate saturday and sunday between two dates)
Is it possible to exclude leaf nodes dynamically using XPATH?
Programming
Software Development
16 Years Ago
by jkozersky
… if anyone can think of a way for me to
exclude
leaf nodes from my output using x-path? The trick…
301 Redirect all .htm but Exclude Specific Files, Directory
Community Center
16 Years Ago
by arrbug
….mydomain.com/archives/[/url] Goal 2. However, I want to
exclude
a couple of specific .htm files, which would be redirected…
How can I exclude the search engine bots on a Coldfusion website?
Digital Media
Digital Marketing
Search Engine Strategies
15 Years Ago
by mheidi
Does anyone know if it's possible to
exclude
the search engine bots by using a robots.txt file on a Coldfusion website just like an HTML site? Thanks, Heidi
Re: How can I exclude the search engine bots on a Coldfusion website?
Digital Media
Digital Marketing
Search Engine Strategies
15 Years Ago
by gklandes
…=mheidi;915788]Does anyone know if it's possible to
exclude
... on a Coldfusion website just like an HTML site?... [/QUOTE…
How to exclude the scroll bar viewing?
Digital Media
UI / UX Design
14 Years Ago
by Jansz36
… this particular site location. I was wondering how can I
exclude
the scroll bar viewing in the browsers with keeping text…
How to exclude the scroll bar viewing?
Digital Media
UI / UX Design
14 Years Ago
by Jansz36
… this particular site location. I was wondering how can I
exclude
the scroll bar viewing in the browsers with keeping text…
Xpath the exclude html element
Programming
Software Development
14 Years Ago
by weloki
I'm using XSLT to try to grab content from an html page. I want to select all the <p> tags but
exclude
all the <li> tags. There is one page where the li tags are not within any of the p tags. For this page, how can I select all p elements but leave out all li elements? I'm trying to use the Xpath exclusion notation, e.g. [not()]
How-to exclude content from APC caching system?
Programming
Web Development
14 Years Ago
by brunope
Hello everyone, I am looking to
exclude
some specific content from a cache system based on APC. This content is a complete directory. So if you have any idea, please let me know.
Re: exclude comments using Regular Expressions
Programming
Software Development
17 Years Ago
by mariocatch
you could use the line.BeginsWith or line.StartsWith (forgot which one it is), and pass in "//". If it returns true, then don't count the line and go to the next line.
Re: exclude comments using Regular Expressions
Programming
Software Development
17 Years Ago
by iamthwee
[url]http://regexlib.com/CheatSheet.aspx[/url]
Re: exclude comments using Regular Expressions
Programming
Software Development
17 Years Ago
by shuchimuley
i gotta use regex.match(regularexpression) . I am using a streamreader to read the whole file and then the contents of the file are match with the pattern of the regular expression . and this regular expression needs to count all the lines of code excluding watever is written in comments . eg [COLOR=#008000] //test1 //test2 /* test3 */ [/…
Re: exclude comments using Regular Expressions
Programming
Software Development
17 Years Ago
by iamthwee
Well the idea would be to write a very trivial regex expression and then apply it on a code snippet. Then you would add to that regex expression gradually getting more complex.
Re: exclude comments using Regular Expressions
Programming
Software Development
17 Years Ago
by campkev
sounds like homework. Show us what you have tried and then we can help
Re: exclude comments using Regular Expressions
Programming
Software Development
17 Years Ago
by iamthwee
[code] (//.*\n|/\*(.|\n)*?\*/) [/code] untested...
Re: exclude comments using Regular Expressions
Programming
Software Development
17 Years Ago
by shuchimuley
well well well , i made a C# program that now reads a file and excluding the comments out.. that worked .. thanks to all . :)
Re: Exclude Content From A Div id
Programming
Web Development
12 Years Ago
by blocblue
Try changing your regex pattern to: `'/<div id="navbar"[^>]+>([^<]*)<\/div>/s'`
Re: Exclude Content From A Div id
Programming
Web Development
12 Years Ago
by rakibtg
thanks for that but my mistake i can't make it works :( here what i am doing, any idea? $html = file_get_html("http://www.example.com"); $displaybody = $html->find('div[id=res]', 0); $regex = '/<div id="navbar"[^>]+>([^<]*)<\/div>/s'; preg_match($regex, $displaybody, $matches); $match =…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC