/**
	 * Determine if $this can be considered a short form of the argument.
	 * If so, then determine the number of matches.
	 *
	 * @param WCText $text
	 * @return integer|boolean
	 */
	public function shortFormMatches( WCData $text ) {
		if ( strnatcasecmp( $this->text === $text->getText() ) === 0 ) return 1; else return False;
	}