Here you can find the source of bold(String text)
Parameter | Description |
---|---|
text | to format |
public static String bold(String text)
//package com.java2s; //License from project: Open Source License public class Main { /**//from w w w. j a v a 2 s . c om * Format text * * @param text to format * @return Formatted text */ public static String bold(String text) { return "<b>" + text + "</b>"; } }