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

fr.lteconsulting.hexa.server.qpath.NavigableString Maven / Gradle / Ivy

The newest version!
package fr.lteconsulting.hexa.server.qpath;

public class NavigableString
{
	String buf;
	public int pos;

	public NavigableString( String buf )
	{
		this.buf = buf;

		pos = 0;
	}

	public char cur()
	{
		return buf.charAt( pos );
	}

	public char ahead()
	{
		return ahead( 1 );
	}

	public char ahead( int i )
	{
		return buf.charAt( pos + i );
	}

	public String extract( int extractLenght )
	{
		// rtrim(substr($text,$pos,$i))
		return buf.substring( pos, pos + extractLenght ).trim();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy