This selects Bengali using the script tag. It works in Javascript, using:
text.split(/[^\p{Script=Bengali}]+/ug)
or
text.match(/[\p{Script=Bengali}]+/ug)
This Regex was provided by <a href="https://stackoverflow.com/users/2627243/peter-seliger">Peter Seliger</a>