﻿String.prototype.trimToNull = function () {
	var value = this.trim();
	return (value.length > 0 ? value : null);
};