Split a cell that contains a phrase, placing each character of the phrase in a cell

I’m working with a 16 column x 4 row LCD display and to keep track of my project screens I’m saving it to a google sheets spreadsheet. I would like to type a sentence and it already puts each character in a cell, maybe using some kind of script, because I’ve already tested the Data… Read More Split a cell that contains a phrase, placing each character of the phrase in a cell

MSBUILD RegexReplace get all text till 2nd last dot from end

I am working with ToolsVersion="3.5". I wanted to match from end of the string till 2-nd last dot (.). For Example for given value 123.456.78.910.abcdefgh I wanted to get 910.abcdefgh only. I tried with <RegexReplace Input="$(big_number)" Expression="/(\w+\.\w+)$/gm" Replacement="$1" count="1"> <Output ItemName ="big_number_tail" TaskParameter="Output"/> </RegexReplace> But it is returning entire string only. Any idea what went… Read More MSBUILD RegexReplace get all text till 2nd last dot from end