Category: string
What happens if you pass a string type to a function? Does it pass by value or reference? What happens if you pass StringBuilder? In C#, the string is …
September 15, 2014
beginner, case study, code, code library, excel, implementation, programming languages, string, VBA, vbscript, windows scripting host
In this article, I am going to share a easy and quick way to delete some duplicate rows (e.g. regarding column B) from a spreadsheet but the requirement is …
You often need to pass/keep variables from pages to pages when you design the website. For example, when you display records in a table, you want the users be …
I think you may have some common code to write for most of the PHP pages. So instead of keep a copy at each PHP file, it is better …
Almost every programmer needs to write a function to reverse a given string and this exercise is kinda a favourite question in first round interviews. To reverse a string, …