Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying following function:

srch = function(srchstr){
    print(ls(pattern=srchstr))
}

While following works:

ls(pattern='ddf')
[1] "ddf"         

Calling the function produces following output:

srch('ddf')
character(0)

I tried following methods:

ss = srch('ddf')
character(0)

ss
character(0)

print(ss)
character(0)

unlist(ss)
character(0)

sapply(ss, print)
named list()

sapply(ss, cat)
named list()

cat(ss)

'cat(ss)' simply gives no output!

Why is this happening & how can this be corrected?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
591 views
Welcome To Ask or Share your Answers For Others

1 Answer

Try to look in the .GlobalEnv:

srch = function(srchstr){
    print(ls(pattern=srchstr, envir = .GlobalEnv))
}

edit joran was faster...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...