Hello. I have searched up and down and have not found a suitable solution here. But I am basically looking for a formula to turn ANY word into a number. But I do not have a list of specific words. We are talking any word in the English language. As in, take any sentence you can find, and convert it to number strings with SOME kind of consistent logic applied.
Maybe something like assigning a value to each letter and then taking the sum value of all the letters to create one number per word? Or just creating a string where a numerical value for each letter is just appeneded to a string? Like if a=1 and t=21 then the word "at" could be =22 (1+21), or =121 (1&21)... maybe something like that?
I imagine I could split each word into a separate letter in each cell, then assign a value for each letter in each cell, but it could end up being like 10,000 columns... and then I would to recombine them and maintain the spacing/separation somehow. Not sure if this makes sense to anyone. But some extra brainpower would be appreciated. I don't have any defined parameters for method or preferred values.
This is just step one for a fun personal project. Thanks in advance for your time!
For example just for illustration - the numbers here are meaningless and not specific to any logic - just to give you an idea:
Maybe something like assigning a value to each letter and then taking the sum value of all the letters to create one number per word? Or just creating a string where a numerical value for each letter is just appeneded to a string? Like if a=1 and t=21 then the word "at" could be =22 (1+21), or =121 (1&21)... maybe something like that?
I imagine I could split each word into a separate letter in each cell, then assign a value for each letter in each cell, but it could end up being like 10,000 columns... and then I would to recombine them and maintain the spacing/separation somehow. Not sure if this makes sense to anyone. But some extra brainpower would be appreciated. I don't have any defined parameters for method or preferred values.
This is just step one for a fun personal project. Thanks in advance for your time!
For example just for illustration - the numbers here are meaningless and not specific to any logic - just to give you an idea:
The | quick | brown | fox | jumps | over | the | lazy | dog |
83343 | 44553 | 1772 | 54546464 | 541426 | 46656893 | 246890 | 57513 | 53235 |