Struttura base
This commit is contained in:
43
src/utility/GestisciStringhe.java
Normal file
43
src/utility/GestisciStringhe.java
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package utility;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Verde
|
||||
*/
|
||||
public class GestisciStringhe {
|
||||
public static int ContaOccorrenze(String testo, String testoDaCercare) {
|
||||
|
||||
}
|
||||
|
||||
public static int ContaOccorrenze(String testo, char tipo) {
|
||||
|
||||
}
|
||||
|
||||
public static int trovaPosizioneOccorrenza(String testo, String testoDaCercare) {
|
||||
|
||||
}
|
||||
|
||||
public static int trovaPosizioneOccorrenza(String testo, String testoDaCercare, int nrOccorrenza) {
|
||||
|
||||
}
|
||||
|
||||
public static char estraiCarattere(String testo, char tipo, int nrOccorrenza) {
|
||||
|
||||
}
|
||||
|
||||
public static boolean isVocale(char carattere) {
|
||||
|
||||
}
|
||||
|
||||
public static boolean isConsonante(char carattere) {
|
||||
|
||||
}
|
||||
|
||||
public static String rimuoviCarattere(String testo, String carattere) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user