tagged [string]

How to extract file name from path?

How to extract file name from path? How do I extract the filename `myfile.pdf` from `C:\Documents\myfile.pdf` in VBA?

12 Oct at 18:3

Convert String To date in PHP

Convert String To date in PHP How can I convert this string `05/Feb/2010:14:00:01` to unixtime ?

24 Dec at 03:16

How to convert current date into string in java?

How to convert current date into string in java? How do I convert the current date into string in Java?

22 Mar at 01:21

How to convert a string to ASCII

How to convert a string to ASCII How do I convert each letter in a string to its ASCII character value?

17 Jul at 15:16

Auto quotes around string in c# - build in method?

Auto quotes around string in c# - build in method? Is there some build in method that add quotes around string in c# ?

21 Apr at 15:7

How do I lowercase a string in Python?

How do I lowercase a string in Python? Is there a way to convert a string to lowercase?

29 Mar at 10:0

What's the difference between String.Count and String.Length?

What's the difference between String.Count and String.Length? I'm using them alternately, is there any difference between them?

27 Mar at 05:45

c# extract values from key-value pairs in string

c# extract values from key-value pairs in string i have a string like this: looks like a regular query string yes, but i'm not in any web context now i want to extract the values (after the = sign) by...

27 Jun at 09:52

How to convert string to integer in C#

How to convert string to integer in C# How do I convert a string to an integer in C#?

27 Jun at 05:1

How do I lowercase a string in C?

How do I lowercase a string in C? How can I convert a mixed case string to a lowercase string in C?

29 Jan at 22:30

How to use HashSet<string>.Contains() method in case -insensitive mode?

How to use HashSet.Contains() method in case -insensitive mode? How to use `HashSet.Contains()` method in case -insensitive mode?

19 Nov at 09:59

String comparison: InvariantCultureIgnoreCase vs OrdinalIgnoreCase?

String comparison: InvariantCultureIgnoreCase vs OrdinalIgnoreCase? Which would be better code: or

3 Nov at 20:17

Java String declaration

Java String declaration What is the difference between `String str = new String("SOME")` and `String str="SOME"` Does these declarations gives performance variation.

6 Sep at 14:58

Remove first 4 characters of a string with PHP

Remove first 4 characters of a string with PHP How can I remove the first 4 characters of a string using PHP?

8 Feb at 03:28

How to convert ArrayList into string array(string[]) in c#

How to convert ArrayList into string array(string[]) in c# How can I convert `ArrayList` into `string[]` in C#?

What's faster: Regex or string operations?

What's faster: Regex or string operations? When should I use Regex over string operations and vice versa only regarding performance?

19 May at 19:33

How to make String.Contains case insensitive?

How to make String.Contains case insensitive? How can I make the following case insensitive?

10 Jul at 06:35

How to provide custom string placeholder for string format

How to provide custom string placeholder for string format I have a string I am using string.format to format it. Now if i want patient also to be retrieved from some config then I need to change str ...

25 Dec at 10:36

How to use GROUP BY to concatenate strings in MySQL?

How to use GROUP BY to concatenate strings in MySQL? Basically the question is how to get from this: to this:

Strip HTML from Text JavaScript

Strip HTML from Text JavaScript Is there an easy way to take a string of html in JavaScript and strip out the html?

25 May at 03:54

How can I truncate a string to the first 20 words in PHP?

How can I truncate a string to the first 20 words in PHP? How can I truncate a string after 20 words in PHP?

13 Apr at 10:28

How to convert a string to an integer in JavaScript

How to convert a string to an integer in JavaScript How do I convert a string to an integer in JavaScript?

How to get the position of a character in Python?

How to get the position of a character in Python? How can I get the position of a character inside a string in Python?

28 Nov at 18:59

shuffle string in python

shuffle string in python I am looking for a function or short program that receives a string (up to 10 letters) and shuffles it.

18 Jun at 10:48

Difference between string and StringBuilder in C#

Difference between string and StringBuilder in C# What is the difference between `string` and `StringBuilder`? Also, what would be some examples for understanding?

26 Feb at 08:56