view examples/globaldemo.cc @ 14543:e47d929fde8f

process backslash string escapes in regexp pattern and regexprep replacement (bug #35911) * regexp.cc (do_regexp_string_escapes): New function. (octregexp, octregexprep): Process backslash string escapes in single-quoted pattern string. (octregexprep): Process backslash string escapes in single-quoted replacement string.
author John W. Eaton <jwe@octave.org>
date Tue, 10 Apr 2012 17:14:24 -0400
parents 4295d634797d
children be41c30bcb44
line wrap: on
line source

#include <octave/oct.h>

DEFUN_DLD (globaldemo, args, , "Global demo.")
{
  int nargin = args.length ();
  octave_value retval;

  if (nargin != 1)
    print_usage ();
  else
    {
      std::string s = args(0).string_value ();
      if (! error_state)
        {
          octave_value tmp = get_global_value (s, true);
          if (tmp.is_defined ())
            retval = tmp;
          else
            retval = "Global variable not found";

          set_global_value ("a", 42.0);
        }
    }
  return retval;
}