File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 368368 }
369369 ]
370370 },
371+ {
372+ "title" : " স্ট্রিং ম্যানিপুলেট করা | Manipulating Strings" ,
373+ "items" : [{
374+ "definition" : " স্প্লিট স্ট্রিং | Putting Together Strings " ,
375+ "code" : " paste('string1', 'string2', sep = '/') \n # separator ('sep') is a space by default"
376+ },
377+ {
378+ "definition" : " '1/2' ফেরত | returns '1/2'" ,
379+ "code" : " paste(c('1', '2'), collapse = '/')"
380+ },
381+ {
382+ "definition" : " স্প্লিট স্ট্রিং | Split String" ,
383+ "code" : " stringr::str_split(string = v1, pattern = '-') \n # returns a list"
384+ },
385+ {
386+ "definition" : " সাবস্ট্রিং পাওয়া | Get the substring" ,
387+ "code" : " stringr::str_sub(string = v1, start = 1, end = 3)"
388+ }
389+ ]
390+ },
371391 {
372392 "title" : " পরিসংখ্যান" ,
373393 "items" : [{
417437 ]
418438 }
419439 ]
420- }
440+ }
You can’t perform that action at this time.
0 commit comments