How to Split .

2
Hello, i used String Split for several letters and was successful. But it’s not possible to split ‘.’ (a point).    Do you have a solution how to split a String at the ‘.’ (point) ?   Kind regards, Waldemar
asked
2 answers
1

1 – can you try to escape the regex  by using  "\\."

2 – if not you can find the position of the dot by find($variable, '.') and take a substring from the start of a word and replace the substring till the positiyon by your self (or something like that with replacing substrings based on found position of dot)

answered
2

Thank you very much Sinan.

The Solution ‘\.’ worked out for me.

answered