Remove Range of Characters by Index Using StringBuilder in C#

karthikeya Boyini
Updated on 22-Jun-2020 13:47:13

542 Views

Use the Remove() method to remove a range of characters by index.Let’s say you need to remove the last 5 characters from the following string −StringBuilder myStr = new StringBuilder("Framework");For that, set the Remove() method as −str.Remove(3, 4);The following is the complete code −Example Live Demousing System; using System.Text; public class Program {    public static void Main() {       StringBuilder myStr = new StringBuilder("Framework");       Console.WriteLine("Initial String: " + myStr);       // removing four characters       Console.Write("New string: ");       myStr.Remove(5, 4);       Console.WriteLine(myStr);    } }OutputInitial String: Framework New string: Frame

Declare Char Arrays in C#

Samual Sam
Updated on 22-Jun-2020 13:46:46

7K+ Views

Declare a char array and set the size −char[] arr = new char[5];Now set the elements −arr[0] = 'h'; arr[1] = 'a'; arr[2] = 'n'; arr[3] = 'k'; arr[4] = 's';Let us see the complete code now to declare, initialize and display char arrays in C# −Example Live Demousing System; public class Program {    public static void Main() {       char[] arr = new char[5];       arr[0] = 'h';       arr[1] = 'a';       arr[2] = 'n';       arr[3] = 'k';       arr[4] = 's';       Console.WriteLine("Displaying string elements...");       for (int i = 0; i < arr.Length; i++) {          Console.WriteLine(arr[i]);       }    } }OutputDisplaying string elements... h a n k s

compareTo Method in C#

karthikeya Boyini
Updated on 22-Jun-2020 13:46:02

1K+ Views

To compare two values, use the CompareTo() method.The following are the return values −0 = both the numbers are equal1 = second number is smaller-1 = first number is smallerHere is the code to implement CompareTo() method in C# −Example Live Demousing System; public class Demo {    public static void Main() {       int val1 = 100;       int val2 = 100;       int res = val1.CompareTo(val2);       Console.WriteLine(res);    } }Output0

GroupBy Method in C#

karthikeya Boyini
Updated on 22-Jun-2020 13:45:32

3K+ Views

The GroupBy() is an extension method that returns a group of elements from the given collection based on some key value.The following is our array −int[] arr = { 2, 30, 45, 60, 70 };Now, we will use GroupBy() to group the elements smaller than 50 −arr.GroupBy(b => chkSmaller(b));The above chkSmaller() finds the elements smaller than 50.Let us see the complete code −Example Live Demousing System; using System.Linq; class Demo {    static void Main() {       int[] arr = { 2, 30, 45, 60, 70 };       var check = arr.GroupBy(b => chkSmaller(b));   ... Read More

View Metadata of a Stored View in MySQL Database

Lakshmi Srinivas
Updated on 22-Jun-2020 13:45:15

263 Views

The INFORMATION_SCHEMA database has a VIEWS table that contains view metadata i.e. data about views. To illustrate it we are taking the example of a view named ‘Info’.ExampleThe following query will show the metadata of a view named ‘Info’ −mysql> SELECT * from INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = 'Info' AND TABLE_SCHEMA = 'query'\G *************************** 1. row *************************** TABLE_CATALOG: def  TABLE_SCHEMA: query    TABLE_NAME: info VIEW_DEFINITION:select`query`.`student_info`.`id`AS`ID`, `query`.`student_info`.`Name` AS `NAME`, `query`.`student_info`.`Subject` AS `SUBJECT`, `query`.` student_info`.`Address` AS `ADDRESS` from `query`.`student_info`         CHECK_OPTION: NONE         IS_UPDATABLE: YES              DEFINER: root@localhost       ... Read More

Order By Clause in C#

Samual Sam
Updated on 22-Jun-2020 13:45:07

493 Views

The orderby is used in C# to sort elements in the collection based on specified fields in a particular order. The order can be ascending or descending.The following is our list with elements −List myList = new List(); // adding elements myList.Add("iOS by Apple"); myList.Add("Android by Google"); myList.Add("Symbian by Nokia");Now, use Orderby to order the elements in descending order −var myLen = from element in myList orderby element.Length descending select element;The following is the complete code −Example Live Demousing System; using System.Collections.Generic; using System.Linq; class Demo {    static void Main() {       List myList = new ... Read More

Delete Existing MySQL Table Using PHP Function

Abhinanda Shri
Updated on 22-Jun-2020 13:44:39

163 Views

PHP uses mysql_query function to delete an existing MySQL table. This function takes two parameters and returns TRUE on success or FALSE on failure. Its syntax is as follows −Syntaxbool mysql_query( sql, connection );Followings are the parameters used in this function −S. No.Parameter & Description1.SqlRequired - SQL query to delete an existing MySQL table2.connectionOptional - if not specified, then the last opened connection by mysql_connect will be used.

Drop a MySQL View from the Database

Akshaya Akki
Updated on 22-Jun-2020 13:43:50

193 Views

With the help of DROP VIEW statement, we can drop a MySQL view from the database. Its syntax would be as follows −SyntaxDROP VIEW [IF EXISTS] view_name;Here view_name is the name of the view which we want to delete from the database.ExampleSuppose if we want to drop a view named info_less then the following query will delete if −mysql> DROP VIEW IF EXISTS Info_less; Query OK, 0 rows affected (0.03 sec)

Delete Existing MySQL Table Using PHP Script

Nitya Raut
Updated on 22-Jun-2020 13:43:01

262 Views

As we know that PHP provides us the function named mysql_query to delete an existing MySQL table.ExampleTo illustrate this we are deleting a table named ‘Tutorials_tbl’ with the help of PHP script in the following example −           Creating MySQL Tables                  

Get Definition of a MySQL View

Jai Janardhan
Updated on 22-Jun-2020 13:42:31

512 Views

As we know that views are a type of virtual tables and are the composition of tables too hence we can use the same query to get the definition of a view which we use to get the definition of a table. In other words, we can use SHOW CREATE statement to get the definition of a MySQL view. Its syntax would be as follows −SyntaxSHOW CREATE VIEW view_name;Here view_name is the name of the view of which we want to get the definition.ExampleThe following query will give the definition of a view named ‘info’ −mysql> Show Create View Info\G ... Read More

Advertisements