Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dakkardaemor

    2 questions (Java/XML)

    1st question: I've a HTML form, I must create an XML fragment from it and add this piece of XML to an existing XML file, that I use as a simple database. For example: [code] <database> <record id="0"> <name>john</name> <phone>234</phone> </record> <record id="1"> <name>Henry</name>...
  2. dakkardaemor

    Regular Expressions

    Hi all! I've a little question ;-) I must create a regexp that matches only: true|false|0|1 so I tryed with this one: 0|1|true|false it seems to work well, but it matches also with: truex falsehood and so on.. so I tried this one: ^(0|1|true|false)$ but this one doesn't seems to work as I...

Part and Inventory Search

Back
Top