Hi,
How can I split a string that doesn't contain a delimiter?
I need to extract 3 character codes that are strung together in 1 field without a delimiter. For example, I have a string that looks like this:
212356244120000000000000000 (40 char)
I need to split them into
212
356
244
120
and be able to search for a specific code i.e "244".
Thank you.
awat
How can I split a string that doesn't contain a delimiter?
I need to extract 3 character codes that are strung together in 1 field without a delimiter. For example, I have a string that looks like this:
212356244120000000000000000 (40 char)
I need to split them into
212
356
244
120
and be able to search for a specific code i.e "244".
Thank you.
awat