> For the complete documentation index, see [llms.txt](https://noel77543.gitbook.io/ztool/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://noel77543.gitbook.io/ztool/tool/untitled-1.md).

# ZCheckFormatTool

**PUBLIC METHOD**

```java

/***
* 是否都是整數
*/
public boolean isInteger(String text) 

//-------

/***
* 是否是浮點數
*/
public boolean isFloat(String text) 

//-------

/***
* 是否是浮點數
* 可指定小數點後 afterPointStart 至 afterPointEnd位
*/
public boolean isFloat(String text, int afterPointStart,int afterPointEnd) 

//-------

/***
* 是否是整數或者浮點數
*/
public boolean isNumber(String text) 

//--------------------

/***
* 是否都是中文
* 目標字串
*/
public boolean isChinese(String text) 

//--------------------

/***
* 是否都是英文
* 目標字串
*/
public  boolean isEnglish(String text)

//--------------------

/***
* 是否都是 大寫英文
* 目標字串
*/
public boolean isUpperEnglish(String text) 


//--------------------

/***
* 是否都是 小寫英文
* 目標字串
*/
public boolean isLetterEnglish(String text) 


//--------------------

/***
* 是否為Email格式
* 目標字串
*/
public boolean isEmail(String text) 

```
