Click here to Skip to main content
15,889,116 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hey . i am using "Split" method but i have a problem . when i use a "^" character as a boundary between my words it cant separate them ! but if i use "/" instead , it works very well ! what is it's problem ?!
its my code with "/" : it works well !
Java
String serverResponsesArray[]=new String [3];
serverResponsesArray=Data.split("/",3);


now if i change "/" to "^" it doesnt work !
Java
String serverResponsesArray[]=new String [3];
serverResponsesArray=Data.split("^",3);
Posted
Updated 22-Mar-15 20:12pm
v2

1 solution

The ^ is a special character. You will need to escape it with "\\^"
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900