Beispiel #1
0
        public GreenTextStep(StepInput input)
        {
            string s             = String.Join(" ", input.chunks.ToArray());
            string withoutquotes = RegexUtilities.PullOutTextInsideQuotes(ref s);

            this.Message = withoutquotes;
        }
        public SpeechBubble(StepInput input)
        {
            string message = RegexUtilities.PullOutTextInsideQuotes(ref input.line);

            this.entity  = input.supplier.GetEntityByAlias(input.chunks[0]);
            this.Message = message;
        }
Beispiel #3
0
        public string GetParameterFromInput(string inputLine)
        {
            string parameter = RegexUtilities.PullOutTextInsideQuotes(ref inputLine);

            return(parameter);
        }