Hi,
As per my project I need to devide a string into two parts.
below is the example:
String searchFilter = "(first=sam*)(last=joy*)";
Where searchFilter
is a string.
I want to split above string to two parts
first=sam*
and last=joy*
so that i can again split this variables into first,sam*,last
and joy*
as per my requirement.
I dont have much hands on experience in java. Can anyone help me to achieve this one. It will be very helpfull.
Thanks in advance