jlcout / epctagcoder

Java library for RFID EPC encode / decode
https://jlcout.github.io/epctagcoder
Apache License 2.0
51 stars 31 forks source link

Don't use regex to split binary string to add support for Android #5

Closed juergenm closed 5 years ago

juergenm commented 5 years ago

Android doesn't support the use of \G in lookbehinds in regular expressions. That's why the split of the binary string doesn't work.

jlcout commented 5 years ago

Hi, juergemn.

Thank you very much. I had no idea that \G was incompatible with android. Very nice addition to the project.