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 Mike Lewis 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: *

  • Users: nikw
  • Order by date
  1. nikw

    Regex Question

    Hi AcidHawk, I had a similar problem where the matches() method doesn't seem to do what you would expect. So I ended up doing something like: Pattern p1 = Pattern.compile("\\s\\w:\\s"); Matcher m1 = p1.matcher(myString); boolean b1 = m1.find(); if (b1) { String[] strArr =...

Part and Inventory Search

Back
Top