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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by DrHyper

  1. DrHyper

    Using Pattern to find entities

    doh! found the solution: int i = 0; while (matcher.find()) { System.out.println("groupstr" + i + " = " + matcher.group()); i++; }
  2. DrHyper

    Using Pattern to find entities

    ...well my entities are obv. shown as ",&,' and < ..new example: How do I modify the code (or the reg. expression) below, so that I get : groupStr0 = &a; groupStr1 = &bb; groupStr2 = &ccc; groupStr3 = &dddd; instead of only: groupStr0 = &a; ***************************** import...
  3. DrHyper

    Using Pattern to find entities

    How do I modify the code (or the reg. expression) below, so that I get : groupStr0 = " groupStr1 = & groupStr2 = ' groupStr3 = < instead of only: groupStr0 = " *************************************************' import java.util.regex.Matcher; import java.util.regex.Pattern; public class...
  4. DrHyper

    Request object size?

    Hi The RFC: http://www.w3.org/Protocols/rfc2616/rfc2616.html Does NOT specify any requirement for URL length. It is purely browser dependant. I made a test in Opera - my favorite browser :-) And it worked with Url-length (Get method) 3000+ DrHyper
  5. DrHyper

    Request object size?

    Thank you guys for your efforts... but: I think you are wrong about the character limitation. It seems that it is browser dependant. Maximum URL Length Is 2,083 Characters in Internet Explorer (GET method) as explained here: http://support.microsoft.com/default.aspx?scid=kb;EN-US;q208427 Some...
  6. DrHyper

    Request object size?

    thank you sean. Do you have a link to some documentation? and by the way: does it matter if its a POST or GET request? thnx
  7. DrHyper

    Request object size?

    Hi Whats the max size of a request object? http://www.someplace.net/mypage.jsp?param1=1&param2=2&param3 <--------------------------size----------------------------> thnx.

Part and Inventory Search

Back
Top