How to remove the underline from linked text

from Macromedia support center

remove underline of hyperlink


Create hyperlinks that do not have underlined text
Standard HTML convention places an underline on text that has been wrapped in anchor tags, so that the user receives the feedback that the text is linked to another file. Modify > Page Properties provides a dialog box that allows for the selection of the color that all hyperlinks on the page will be displayed. However, the Properties window does not provide a means for the the developer to turn off the underline attribute. If it is desired to delete the default underline, it is possible to do so by redefining the attributes associated with the anchor tags on a specific page.

JAVA
Replace/remove character in a String

To replace all occurences of a given character :
String myString = "Replace ' by * ";
String tmpString = myString.replace( '\'', '*' );
System.out.println( "Original = " + myString );
System.out.println( "Result = " + copyString );



To replace a character at a specified position :
public static String replaceCharAt(String s, int pos, char c) {
return s.substring(0,pos) + c + s.substring(pos+1);
}



To remove a character :
public static String removeChar(String s, char c) {
String r = "";
for (int i = 0; i < s.length(); i ++) {
if (s.charAt(i) != c) r += s.charAt(i);
}
return r;
}



To remove a character at a specified position:
public static String removeCharAt(String s, int pos) {
return s.substring(0,pos)+s.substring(pos+1);
}



Check this Optimize How-to for a more efficient String handling technique.

verizon fios quantum router - switching from an old router to a new one

  this is a guide about how to replace verizon fios quantum router G1100 with the exact same model.  you can simple unplug everything and re...