Hello,
My requirement is to split the path into two strings from a given string.
given string pattern :
\default\main\(.*)\Tutorials\internet.
Here the split delimiter will be "(.*)" and this will not be a part of any of the split strings.
The first split string will contain all characters before the delimiter while the second string needs to hold all characters appearing after the delimitor viz.,
$string1="\default\main\";
$string2="\Tutorials\internet";
Hope the above info will clarify as to what i am tryiing.
Thanks in advance.
Anandatirtha