Category "string"

String anagram in Java

i am trying to create a program for string anagram that follows these conditions: method should allow only letters, white space, commas and dots in an anagram.

Faced an error: excess elements in char array initializer during print out of array of strings

I've tryed to print out some array of strings but faced error: excess elements in char array initializer Please make a hint what's worng with this code? Step 1

Concatenate strings with quotation marks separated by commas

I want to write a function that concatenates multiple strings into one one string, but each part is marked with quotation marks and separated by a comma. The fu

How can I join strings within a list in Python? [closed]

I have the following list: values = ['A', 'C', 'B', 'D'] Is there a way I can get it to output the list as the following string? result = 'AC

Given a list of strings, return characters that appear in more than one string

I'm trying to implement a function which receives a variable number of strings and returns characters that appear at least in two strings: test_strings = ["hel

How to use unsafe get a byte slice from a string without memory copy

I have read about "https://github.com/golang/go/issues/25484" about no-copy conversion from []byte to string. I am wondering if there is a way to convert a str

How to keep dollar sign within sed in the bash script?

I am trying to find a way to escape the dollar sign within the sed command in a bash script. I have found here tons of answers that say that you need to put fou

Convert a Python block of code into a single line

Below is the python block code, def compute_hcf(x, y): while(y): x, y = y, x % y return x which I wanted to convert into single line like below, d

CoderByte says all of my testcases are wrong?

I tried coderbyte and looks something is wrong with it. The first challenge is simply to reverse a string. I did this in java: import java.util.*; import java

Javascript: How can I add two strings without converting into numbers?

Given two numbers in string format (eg. '10.23' and '25.69') how can I get their sum without converting the string into numbers? (eg '35.92') I do not want to c

Remove underscore and number at the end of string

I am working with a dataset that has column with some underscores. There is a patter to it but they are different patterns, as shown below ID Col1 1029

Why is my if block not getting executed in my C program?

Why is the if block not executed in the code below? #include <stdio.h> #include <stdlib.h> int main() { printf("--------------------------------

regex - Filter out year from a date string in an array of objects

I'm trying to filter out year out of this array of objects (in React) 2021-12-20, 2021-12-21, 2021-12-22, (...) 2022-01-28, 2022-01-31, 2022-02-01, It has 100

How to write a python computer program that will take any valid arithmetic expression as a string and will output a list(or array of string)? [duplicate]

How to write a python computer program that will take any valid arithmetic expression as a string and will output a list (or array of string)

How to convert a float64 variable into a string?

I try to convert my float64 variable into str with : data['Abo_str'] = data['Abo'].isnull().astype(str) But the result is False. How can I do it ? Thx

write all words from string containing substring C++

I need to print all words from the text file which includes substring, how can I add to the code? The code which I have is printed below #include <iostream&g

Printing strings and characters as hexadecimal in Go

Why cyrillic strings in hexadecimal format differ from cyrillic chars in hexadecimal format? str := "Э" fmt.Printf("%x\n", str) //result d0ad str :

How to get part of string from regex in Java

For example, I have string with range of earnings: 5 000-10 000 USD and i want to extract from that string minimum and maximum value. I prepared regexes, for e

Datetime + String from a Pandas table into a new table. One line of code

I'm a beginner at python. I'm moving specific cells/scalars from one Dataframe to another. I'm trying to work out why my first block of code didn't work but my

12 hour to 24 hour time conversion

I am trying to write this c++ program from hackerrank but in my output all I am getting is a blank space. The input string is in the form of HH:MM:SSpp where