2 * $Id: HTMLUtilities.java,v 1.2 2006-10-21 23:18:43 pombredanne Exp $
3 * Copyright Narushima Hironori. All rights reserved.
5 package net.sourceforge.phpeclipse.wizards.html;
10 public class HTMLUtilities {
12 final static String[] specialMarks = { "&", "&", "<", "<", ">",
13 ">", "\"", """, };
15 public static String escape(String text) {
16 for (int i = 0; i < specialMarks.length; i += 2) {
17 text = text.replaceAll(specialMarks[i], specialMarks[i + 1]);
22 public static String unescape(String text) {
23 for (int i = specialMarks.length - 1; i >= 0; i -= 2) {
24 text = text.replaceAll(specialMarks[i], specialMarks[i - 1]);