In order to memorise code syntax I'm using a memory technique for memorising collections of letters by using a combination of letters and vowel's and searching for words using a regex dictionary found here: https://www.visca.com/regexdict/
So for example if I wanted to create a word from the abbreviation "HTML" I would use:
H followed by zero or more Vowels, followed by T, followed by zero or more Vowels, followed M, followed by zero or more Vowels and then L followed by zero or more Vowels
I would then use the regex dictionary above to find any words that contain these specific letter combinations.
So any words that contain the following combination of letters: H(a|e|i|o|u)T(a|e|i|o|u)M(a|e|i|o|u)L(a|e|i|o|u)
The vowels can be any combination of a,e,i,o,u , they can be used more than once between the letters or not at all, or even at the end. So long as the letter combination forms a word from the regex dictionary.
So for HTML one of the words found would be H(a)T(e)M(ai)L
What regex combination would enable me to do this?
Thank you