All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.coos.poi.excel.editors.TrimEditor Maven / Gradle / Ivy

There is a newer version: 2.2.7.1
Show newest version
package top.coos.poi.excel.editors;

import org.apache.poi.ss.usermodel.Cell;

import top.coos.poi.excel.CellEditor;
import top.coos.util.StringUtil;

/**
 * 去除String类型的单元格值两边的空格

 *
 */
public class TrimEditor implements CellEditor{

	@Override
	public Object edit(Cell cell, Object value) {
		if(value instanceof String) {
			return StringUtil.trim((String)value);
		}
		return value;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy