-
Need Help
Hi all,
I am converting java script file in java file. I have converted a file without error but having one problem i dont know what is is replacing function for match() (A javascript function) written in java.
lines written in java scipt are as follow:
while (set_of_matras.match(charecter_at_probable_positio n_of_half_r) != null) // while-05
{
//code lines
}
i dont know how to convert it in java
set_of_matras.match(
if anybody know please help
-
Depends what you're trying to do, but I'm guessing indexOf() is the thing, and > -1 (ie the character exists in the String)?
-
Hi Tolls,
It Worked,!!
Thank You .!!!!!!!!!!!!
-
No probs.
The API is your friend...:)