Here you can find the source of toId(String text)
public static String toId(String text)
//package com.java2s; //License from project: Apache License public class Main { public static String toId(String text) { return text.replaceAll("[^a-zA-Z0-9\\-_]*", ""); }//from w ww. j a va 2 s . c o m }