I've been trying to learn RegEx in Excel 2013 in order to extract certain substrings from long strings of text. The strings are all in the same column and excel sheet. The solution to my problem is probably quite simple one but I can't quite seem to make the operation work. (I also attempted to use the more trivial functions FIND, RIGHT etc which would work for this but are a bit messier and RegEx also seems like a nice tool which may be useful for more complex tasks in the future).
What I want to do is extract information that is positioned anywhere in the string after an occurence of the text "issue": (including quotation marks and colon) and before a comma (which should therefore be used as an end delimiter). The information retrieved can be both numbers, letter and dashes and the length will vary.
There is only one occurrence of "issue": in every cell so there's no need to repeat the procedure after a result is fetched. Some cells are also missing the information and should simply be skipped.
If someone can provide me with at code snippet or point me in the right direction to an appropiate learning resource it would be greatly appreciated.
What I want to do is extract information that is positioned anywhere in the string after an occurence of the text "issue": (including quotation marks and colon) and before a comma (which should therefore be used as an end delimiter). The information retrieved can be both numbers, letter and dashes and the length will vary.
There is only one occurrence of "issue": in every cell so there's no need to repeat the procedure after a result is fetched. Some cells are also missing the information and should simply be skipped.
If someone can provide me with at code snippet or point me in the right direction to an appropiate learning resource it would be greatly appreciated.