Found 34487 Articles for Programming

Java Program to check whether the character is ASCII 7 bit numeric

karthikeya Boyini
Updated on 25-Jun-2020 13:38:30

143 Views

To check whether the entered value is ASCII 7-bit numeric, check the character from ‘0’ to ‘9’.Here, we have a numeric character.char one = '9';Now, we have checked a condition with if-else for numeric character from ‘0’ to ‘9’if (c >= '0' && c = '0' && c = '0' && c = '0' && c

Iterate over lines from multiple input streams in Python

Ankith Reddy
Updated on 25-Jun-2020 13:43:08

515 Views

Python’s built-in open() function opens one file in read/write mode and read/write operations on it. To perform processing on multiple files in a batch, one has to use fileinput module of Python’s standard library. This module provides a Fileinput class with functionality of iterating over files. The module also defines helper functions for the same purpose.Primary interface to this module is input() function. This function returns instance of Fileinput class.fileinput.input(files, inplace, mode)The files parameter is name of one or more files to be read one by one. Each file acts as a generator and using a for loop it can ... Read More

Java Program to check whether the entered character is ASCII 7 bit numeric and character

Samual Sam
Updated on 25-Jun-2020 13:44:38

100 Views

To check whether the entered value is ASCII 7-bit numeric and character (alphanumeric), check the characters ASCII value for −A to Z Or a to z Or 0 to 9Here, we have the following value −char one = '5';Now, we have checked some conditions with if-else for ASCII 7-bit numeric and character.if ((one >= 'A' && one = 'a' && one = '0' && one = 'A' && one = 'a' && one = '0' && one = 'A' && one = 'a' && one = '0' && one

Object-oriented filesystem paths in Python (pathlib)

Arjun Thakur
Updated on 25-Jun-2020 13:47:38

695 Views

The pathlib module provides an object oriented approach to handling filesystem paths. The module also provides functionality appropriate for various operating systems. Classes defined in this module are of two types – pure path types and concrete path types. While pure paths can only perform purely computational operations, concrete paths are capable of doing I/O operations too.pathlib module defines following classes −Sr.No.Module & Description1PurePathThe base class for all other classes2Pathsubclassed from PurePath. This is a concrete class that represents filesystem path.3PosixPathPath subclass for non-Windows OS4WindowsPathPath subclass for Windows systems5PurePosixPathPurePath subclass for non-Windows systems6PureWindowsPathPurePath subclass for Windows systemsWhen instance of Path ... Read More

Python object persistence (shelve)

George John
Updated on 25-Jun-2020 13:48:57

4K+ Views

The shelve module in Python’s standard library is a simple yet effective tool for persistent data storage when using a relational database solution is not required. The shelf object defined in this module is dictionary-like object which is persistently stored in a disk file. This creates afile similar to dbm database on UNIX like systems. Only string data type can be used as key in this special dictionary object, whereas any picklable object can serve as value.The shelve module defines three classes as follows −Sr.No.Module & Description1ShelfThis is the base class for shelf implementations. It is initialized with dict-like object.2BsdDbShelf This ... Read More

Java Program to subtract week from current date

Samual Sam
Updated on 25-Jun-2020 13:50:00

485 Views

Firstly, you need to import the following package for Calendar class in Java.import java.util.Calendar;Create a Calendar object and display the current date and time.Calendar calendar = Calendar.getInstance(); System.out.println("Current Date and Time = " + calendar.getTime());Now, let us decrement the weeks using the calendar.add() method and Calendar.WEEK_OF_YEAR constant. Set a negative value since we are decrementing here.calendar.add(Calendar.WEEK_OF_YEAR, -2);Example Live Demoimport java.util.Calendar; public class Demo {    public static void main(String[] args) {       Calendar calendar = Calendar.getInstance();       System.out.println("Current Date = " + calendar.getTime());       // Subtract 2 weeks       calendar.add(Calendar.WEEK_OF_YEAR, -2);     ... Read More

Java program to print all distinct elements of a given integer array in Java

karthikeya Boyini
Updated on 25-Jun-2020 13:51:31

5K+ Views

All distinct elements of an array are printed i.e. all the elements in the array are printed only once and duplicate elements are not printed. An example of this is given as follows.Array = 1 5 9 1 4 9 6 5 9 7 Distinct elements of above array = 1 5 9 4 6 7A program that demonstrates this is given as follows.Example Live Demopublic class Example {    public static void main (String[] args) {       int arr[] = {1, 5, 9, 1, 4, 9, 6, 5, 9, 7};       int n = arr.length;   ... Read More

Java program to program to cyclically rotate an array by one

Samual Sam
Updated on 25-Jun-2020 13:18:13

889 Views

The array is cyclically rotated clockwise by one. This means that each of the array elements are displayed to the right by one and the last element ends up as the first element. An example of this is given as follows.Original array = 1 2 3 4 5 6 7 8 9 10 Rotated array = 10 1 2 3 4 5 6 7 8 9A program that demonstrates this is given as follows.Example Live Demopublic class Example {    public static void main(String[] args) {       int[] arr = {1, 2, 3, 4, 5, 6, 7, 8, 9, ... Read More

Java Program to replace only first occurrences of given String with new one

karthikeya Boyini
Updated on 25-Jun-2020 13:19:35

205 Views

Use the replaceFirst() method to replace only first occurrences of given String with new one.Let’s say we have the following string.String str = "THIS IS DEMO TEXT!";We have to replace the first occurrence of “IS” with “EV”. For that, use replaceFirst() method.str.replaceFirst("IS", "EV");The following is the final example, wherein the first occurrence of “IS” is replaced.Example Live Demopublic class Demo {    public static void main(String[] args) {       String str = "THIS IS DEMO TEXT!";       System.out.println("String = "+str);       System.out.println("Replacing only the first occurrence of substring IS...");       System.out.println("Updated string = ... Read More

Java Program to replace all occurrences of a given character with new character

Samual Sam
Updated on 25-Jun-2020 13:21:05

292 Views

Let’s say the following is our string.THIS IS DEMO TEXT!Here, to replace every occurrence of ‘I’ with ‘E’, use the replace() method.str.replace('I', 'E'));The following is the complete example to replace all occurrences of a given character with new character.Example Live Demopublic class Demo {    public static void main(String[] args) {       String str = "THIS IS DEMO TEXT!";       System.out.println("String = "+str);       System.out.println("Updated string = "+str.replace('I', 'E'));    } }OutputString = THIS IS DEMO TEXT! Updated string = THES ES DEMO TEXT!

Advertisements