I created a class in NetBeans that will be used for string manipulation only. What imports should I use.
I can't even declare a string variable because it didn't autogenerate imports for me. :P Since I'm new, I have no clue what is the bare necesities in the Java world.
This isn't working:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package helloworld;
import java.text;
/**
*
* @author Sergio
*/
public class WordManipulations
{
public string[] ReturnAllVowels()
{
return string[] x;
}
}
It says that string ;Cannot find symbol;