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

com.harium.etyl.util.StringUtils Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.harium.etyl.util;

import java.io.File;

public class StringUtils {

	public static final String NEW_LINE = "\n";
	public static final String WHITE_SPACE = " ";
	public static final String WINDOWS_SPACING = "%20";
	
	public static int countOccurrences(String text, char match) {
		int count = 0;
		for(int i=0;i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy