how do I explain this and what does it mean.
[]data=clearformula.split("(?<=[-+*/])|(?=[-+/])");
Consider this regular expression: "(?<=[-+*/])|(?=[-+/])"
This will produce: [ +, -, *, / ]
In text/string "clearformula", whenever i will find either of "-", "+", "*" or "/"
It will split the string into two parts & will store in the list named "data"
******************************************************************************************
PLEASE LIKE IT RAISE YOUR THUMBS UP
IF YOU ARE HAVING ANY DOUBT FEEL FREE TO ASK IN COMMENT
SECTION
******************************************************************************************
Get Answers For Free
Most questions answered within 1 hours.