Ολο και κάτι έχω πάντα να πω και να γράψω για αυτά που συμβαίνουν στην πραγματική μου ζωή ή στο μυαλό μου.. I always find something to share with you..
Τρίτη 6 Δεκεμβρίου 2011
Finance and Econometrics
This semester I am attending Finance course. It is a really interesting subject, but it is too hard learn all this in just a single semester! While I was searching for resource, I found a collection of short video casts that explain the fundamentals.
In case that you are intersted in Finance, visit the following link using a Safari browser.
Σάββατο 26 Νοεμβρίου 2011
Java Code:Underline keyword in sentence
1: public String markWord(String sentence, String word) {
2: int lastFound = -1;
3: while ((lastFound = sentence.toLowerCase().indexOf(word, lastFound)) > -1) {
4: String prefix=sentence.substring(0, lastFound) + "<u><b>";
5: String _word= sentence.substring(lastFound,lastFound+ word.length());
6: String suffix="</b></u>"
7: + sentence.substring(lastFound + word.length(), sentence.length());
8: sentence = prefix+_word+suffix;
9: lastFound+="<u><b></b></u>".length();
10: }
11: return sentence;
12: }
Εγγραφή σε:
Αναρτήσεις (Atom)