Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • strtoname() in Stata 13

    I reported what I had assumed to be a bug in strtoname() to tech support and got a reply to the effect that it was working as intended. I don't fully understand the response yet, but I'm trying to, and it would be helpful to me if I could see some behavior on Stata 13. Would somebody show me the output of this on Stata 13 (I think perhaps anything between 8 and 13 would work?), and also specify the OS version on which it was run?

    Code:
    di as text strtoname("`foo")
    di as text strtoname("°±²³´µ¶·¸¹º»¼½¾¿")
    di as text strtoname("䀀䀁䀂䀃䀄䀅䀆䀇")

  • #2
    Code:
    . about
    
    Stata/SE 13.1 for Unix (Linux 64-bit x86-64)
    Revision 12 Nov 2015
    Copyright 1985-2013 StataCorp LP
    
    10-user Stata compute server perpetual license:
           Serial number:  13
             Licensed to:  Stata Developer
                           StataCorp LLC
    
    . di as text strtoname("`foo")
    `foo
    
    . di as text strtoname("°±²³´µ¶·¸¹º»¼½¾¿")
    °±²³´µ¶·¸¹º»¼½¾¿
    
    . di as text strtoname("䀀䀁䀂䀃䀄䀅䀆䀇")
    䀀䀁䀂䀃䀄䀅䀆䀇

    Comment


    • #3
      Thank you very much!

      Comment

      Working...
      X