I'm working with Google BigTable. I would like to use the convertToRegExpString method to access at specific Row Key having partial information.
I have a row key like this: "AAAAA&BBBBB&CCCCC&DDDDD"
I should pass to the method a regex that specifies first two keys (AAAAA&BBBBB) and the last one (DDDDD), bypassing the third value. Consider that the third value has a variable length and it can be compose by characters and numbers.
Thank you in advance