Specialized on Data processing, Data management Implementation plan, Data Collection tools - electronic and paper base, Data cleaning specifications, Data extraction, Data transformation, Data load, Analytical Datasets, and Data analysis. BJ Data Tech Solutions teaches on design and developing Electronic Data Collection Tools using CSPro, and STATA commands for data manipulation. Setting up Data Management systems using modern data technologies such as Relational Databases, C#, PHP and Android.
Tuesday, May 28, 2019
How to change local strings
Let's say I want to change the content of string local named asdf from q to 2. I tried this
Code:
. local asdf "q"
. display("`asdf'")
q
. local asdf subinstr(`asdf',"q","2")
. display("`asdf'")
subinstr(q,
As you can see, the last line does not produce what I expect. I expected 2 will come out. How can I solve this problem?
No comments:
Post a Comment