Skip to content

Commit 665f3ff

Browse files
author
Sabbir Ahmed
authored
Merge pull request #1056 from irezaul/patch-10
Update r.json
2 parents 828a651 + b221466 commit 665f3ff

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

data/r.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,26 @@
392392
}
393393
]
394394
},
395+
{
396+
"title": "স্ট্রিং ম্যানিপুলেট করা | Manipulating Strings",
397+
"items": [{
398+
"definition": "স্প্লিট স্ট্রিং | Putting Together Strings ",
399+
"code": "paste('string1', 'string2', sep = '/') \n # separator ('sep') is a space by default"
400+
},
401+
{
402+
"definition": "'1/2' ফেরত | returns '1/2'",
403+
"code": "paste(c('1', '2'), collapse = '/')"
404+
},
405+
{
406+
"definition": "স্প্লিট স্ট্রিং | Split String",
407+
"code": "stringr::str_split(string = v1, pattern = '-') \n # returns a list"
408+
},
409+
{
410+
"definition": "সাবস্ট্রিং পাওয়া | Get the substring",
411+
"code": "stringr::str_sub(string = v1, start = 1, end = 3)"
412+
}
413+
]
414+
},
395415
{
396416
"title": "পরিসংখ্যান",
397417
"items": [{

0 commit comments

Comments
 (0)