Go – Strings

  • Post author:
  • Post category:GO
  • Post comments:1 Comment

Strings, which are widely used in Go programming, are a readonly slice of bytes. In the Go programming language, strings are slices. The Go platform provides various libraries to manipulate strings.…

Continue ReadingGo – Strings

VBA – UCase

  • Post author:
  • Post category:VBA
  • Post comments:0 Comments

The UCase function returns the string after converting the entered string into UPPER case letters. Syntax UCase(String) Example Add a button and place the following function inside the same. Private…

Continue ReadingVBA – UCase

C# – Basic Syntax

  • Post author:
  • Post category:C#
  • Post comments:2 Comments

C# Basic Syntax is an object-oriented programming language. In Object-Oriented Programming methodology, a program consists of various objects that interact with each other by means of actions. The actions that…

Continue ReadingC# – Basic Syntax

Go – Method

  • Post author:
  • Post category:GO
  • Post comments:2 Comments

In this topic we learned about Go - Method. Go programming language supports special types of functions called methods. In method declaration syntax, a "receiver" is present to represent the…

Continue ReadingGo – Method

VBA – Lcase

  • Post author:
  • Post category:VBA
  • Post comments:0 Comments

The LCase function returns the string after converting the entered string into lower case letters. Syntax Lcase(String) Example Add a button and place the following function inside the same. Private…

Continue ReadingVBA – Lcase

VBA -InString Reverse

  • Post author:
  • Post category:VBA
  • Post comments:0 Comments

The InStrRev function returns the first occurrence of one string within another string. The Search happens from the right to the left. Syntax InStrRev(string1,string2[,start,[compare]]) Parameter Description String1 − A required parameter.…

Continue ReadingVBA -InString Reverse