2
votes
4answers
259 views

java println problem [duplicate]

Possible Duplicates: How do I compare strings in Java? whats the difference between “.equals and ==” Hi all, System.out.println() behaving in a different way with strings. ...
4
votes
3answers
2k views

how to get the file name from the path?

I have a Perl variable I populate from the database. it's name is $path I need to get another variable $file which has just the filename from the pathname. I tired $file=$path=~s/.*\///; I am ...
7
votes
4answers
503 views

Simple Java regex not working

I have this regex which is supposed to remove sentence delimiters(. and ?): sentence = sentence.replaceAll("\\.|\\?$",""); It works fine it converts "I am Java developer." to "I am Java developer" ...