The Artima Developer Community
Sponsored Link

Java Answers Forum
Regular Expressions in WebSphere

1 reply on 1 page. Most recent reply: Jan 6, 2005 1:53 PM by Robin

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
Robin

Posts: 2
Nickname: userrobin
Registered: Jan, 2005

Regular Expressions in WebSphere Posted: Jan 6, 2005 1:51 PM
Reply to this message Reply
Advertisement
I am having a problem with compiling my Java code in Websphere when i use the regex (regular expressions) objects in certain ways.<br><br>

Here is a sample of the code..<br><br>

<b>import java.util.regex.*;<br>
import java.io.*;<br>
import java.lang.*;<br></b>
.<br>
.<br>
.<br>
<b>P attern pPhone = Pattern.compile("some pattern here");<br>
Matcher mPhone = pPhone.<u>matcher</u>("some");<br>
boolean bMatch = mPhone.matches();</b><br><br>

I get the error on the second line when trying to use the "matcher" function. The error message is..<br><br>

<b>The method matcher(java.lang.CharSequence) in the type java.util.regex.Pattern is not applicable for the arguments (java.lang.String)</b><br><br>

It will not let me use a string in the matcher function which takes a CharSequence. But a CharSequence is an interface that implements a String ...so I don't get it. Note that this code <b>will</b> compile in both JBuilder and TextPad even, but not in WebSphere 5.0.<br><br>

Any help on this would be appreciated!<br>
Thanks


Robin

Posts: 2
Nickname: userrobin
Registered: Jan, 2005

Re: Regular Expressions in WebSphere Posted: Jan 6, 2005 1:53 PM
Reply to this message Reply
Please ignore all the HTML tags above ...i didn't use the right type of brackets!

Flat View: This topic has 1 reply on 1 page
Topic: DNS : Route Through , 'RT' : java Network Programming Previous Topic   Next Topic Topic: J M S Topic Connectivity Help

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use