Click here to Skip to main content
15,898,035 members
Home / Discussions / Java
   

Java

 
GeneralRe: project Pin
Member 803844227-Jun-11 4:46
Member 803844227-Jun-11 4:46 
GeneralRe: project Pin
Pete O'Hanlon27-Jun-11 5:59
mvePete O'Hanlon27-Jun-11 5:59 
GeneralRe: project Pin
Member 803844227-Jun-11 6:39
Member 803844227-Jun-11 6:39 
GeneralRe: project PinPopular
Pete O'Hanlon27-Jun-11 6:53
mvePete O'Hanlon27-Jun-11 6:53 
GeneralRe: project Pin
Paul Conrad17-Jul-11 7:56
professionalPaul Conrad17-Jul-11 7:56 
GeneralRe: project Pin
TorstenH.27-Jun-11 20:41
TorstenH.27-Jun-11 20:41 
GeneralRe: project Pin
Nagy Vilmos27-Jun-11 21:20
professionalNagy Vilmos27-Jun-11 21:20 
QuestionRegex to find an alphanumeric sequence in a block of text. Pin
kartikdasani22-Jun-11 19:24
kartikdasani22-Jun-11 19:24 
I need to find an alphanumeric sequence example:1wer3rtyu4sd inside a block of text
to which the alpanumeric sequence is unique.

I am using the following piece of code:

Pattern pattern = Pattern.compile(regex);//need a proper regex
Matcher matcher = pattern.matcher(strLine); //strLine consists the text
if (matcher.find())
{
System.out.println(matcher.group());
System.out.println(matcher.groupCount());
}
AnswerRe: Regex to find an alphanumeric sequence in a block of text. Pin
Peter_in_278022-Jun-11 19:50
professionalPeter_in_278022-Jun-11 19:50 
QuestionConfused with making "Balanced" Binary Search Tree - JAVA (Netbeans) Pin
D315822-Jun-11 6:13
D315822-Jun-11 6:13 
AnswerRe: Confused with making "Balanced" Binary Search Tree - JAVA (Netbeans) Pin
David Skelly23-Jun-11 1:57
David Skelly23-Jun-11 1:57 
GeneralRe: Confused with making "Balanced" Binary Search Tree - JAVA (Netbeans) Pin
D315823-Jun-11 6:05
D315823-Jun-11 6:05 
GeneralRe: Confused with making "Balanced" Binary Search Tree - JAVA (Netbeans) Pin
quangson9124-Jun-11 21:46
quangson9124-Jun-11 21:46 
QuestionHelp me! Get profile user of yahoo [modified] Pin
langthuan21-Jun-11 19:44
langthuan21-Jun-11 19:44 
AnswerRe: Help me! Get profile user of yahoo Pin
TorstenH.21-Jun-11 20:19
TorstenH.21-Jun-11 20:19 
GeneralRe: Help me! Get profile user of yahoo Pin
langthuan21-Jun-11 20:51
langthuan21-Jun-11 20:51 
GeneralRe: Help me! Get profile user of yahoo Pin
TorstenH.21-Jun-11 21:06
TorstenH.21-Jun-11 21:06 
GeneralRe: Help me! Get profile user of yahoo Pin
langthuan21-Jun-11 21:23
langthuan21-Jun-11 21:23 
GeneralRe: Help me! Get profile user of yahoo Pin
TorstenH.21-Jun-11 22:51
TorstenH.21-Jun-11 22:51 
AnswerRe: Help me! Get profile user of yahoo Pin
Nagy Vilmos21-Jun-11 22:20
professionalNagy Vilmos21-Jun-11 22:20 
AnswerRe: Help me! Get profile user of yahoo Pin
Shameel4-Jul-11 8:18
professionalShameel4-Jul-11 8:18 
QuestionHelp Erro Logic Code of java project Pin
HeartsFrozen18-Jun-11 21:26
HeartsFrozen18-Jun-11 21:26 
AnswerRe: Help Erro Logic Code of java project Pin
Richard MacCutchan18-Jun-11 21:52
mveRichard MacCutchan18-Jun-11 21:52 
AnswerRe: Help Erro Logic Code of java project Pin
HeartsFrozen18-Jun-11 22:08
HeartsFrozen18-Jun-11 22:08 
QuestionHow to capture image writing Java code Pin
Ravindra Thakare16-Jun-11 21:18
Ravindra Thakare16-Jun-11 21:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.