We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 828a651 + b221466 commit 665f3ffCopy full SHA for 665f3ff
1 file changed
data/r.json
@@ -392,6 +392,26 @@
392
}
393
]
394
},
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
+},
415
{
416
"title": "পরিসংখ্যান",
417
"items": [{
0 commit comments