filterimage.java

来自「JSP聊天系统」· Java 代码 · 共 23 行

JAVA
23
字号
package org.ehotsoft.yekki.filter;

import org.ehotsoft.yekki.util.StringUtil;

public class FilterImage extends Filter {
	
	public FilterImage( Message message ) {
		
		super( message );
	}

	protected String filter( String content ) {
		
		return filterImage( content );
	}
	
	private String filterImage( String image ) {
		
		image = StringUtil.replace( image, "[img]", "<img src=\"" );

		return StringUtil.replace( image, "[/img]", "\">" );
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?