tagged [text]

How to remove spaces from a string using JavaScript?

How to remove spaces from a string using JavaScript? How to remove spaces in a string? For instance:

19 May at 03:40

Text border using css (border around text)

Text border using css (border around text) Is there a way to integrate a border around text like the image below? ![text border](https://i.stack.imgur.com/DeWjI.jpg)

20 Jun at 09:12

How to append text to an existing file in Java?

How to append text to an existing file in Java? I need to append text repeatedly to an existing file in Java. How do I do that?

13 Aug at 20:37

How to generate an image from text on fly at runtime

How to generate an image from text on fly at runtime Can anyone guide how to generate image from input text. Image might have any extension doesn't matter.

15 Jan at 09:26

Android TTS volume control

Android TTS volume control Is there any way to control volume of TTS engine when sending request to TTS engine? Can I able to use AudioManager here? Thank You.

1 Jan at 22:0

ServiceStack: How to deserialize to dynamic object

ServiceStack: How to deserialize to dynamic object Tried using `JsonSerializer.DeserializeFromString(data)` and it does not work. Can one deserialize into dynamic, or is SS not capable of doing that?

10 Sep at 20:0

Find text string using jQuery?

Find text string using jQuery? Say a web page has a string such as "I am a simple string" that I want to find. How would I go about this using JQuery?

8 Jul at 23:19

Use System.Text.Json to deserialize properties with private setters

Use System.Text.Json to deserialize properties with private setters Is there a way to use with object that contains private setters properties, and fill those properties? (like does)

8 Jun at 20:46

.Net Winforms/WPF Editor that generate HTML

.Net Winforms/WPF Editor that generate HTML Looking and .Net Rich Editor that generates HTML, it is important to be capable of handling Tables, merging Cells among other table stuff.

16 Jul at 16:4

Determine what line ending is used in a text file

Determine what line ending is used in a text file Whats the best way in C# to determine the line endings used in a text file (Unix, Windows, Mac)?

24 Jan at 05:17

ServiceStack HttpUtils + Proxy Server

ServiceStack HttpUtils + Proxy Server I am using ServiceStack HttpUtils to connect to a third-party REST API. How do I pass in Proxy Server and Proxy Port when making requests? Thanks rudrvij

15 Mar at 19:11

Select random lines from a file

Select random lines from a file In a Bash script, I want to pick out N random lines from input file and output to another file. How can this be done?

11 Apr at 05:24

Where is JsonDateHandler enum gone in ServiceStack version 4.0.5.0 (current Nuget Version)?

Where is JsonDateHandler enum gone in ServiceStack version 4.0.5.0 (current Nuget Version)? I cannot find the `JsonDateHandler` enum in the current Nuget ServiceStack version 4.0.5.0. Any pointers?

25 Sep at 07:18

Class attribute [JsonConverter(typeof(StringEnumConverter))] equivalent in ServiceStack

Class attribute [JsonConverter(typeof(StringEnumConverter))] equivalent in ServiceStack Is there [JsonConverter(typeof(StringEnumConverter))] equivalent attribute class in ServiceStack? This is a Newt...

remove empty lines from text file with PowerShell

remove empty lines from text file with PowerShell I know that I can use: to remove empty lines. But How I can remove them with '-replace' ?

10 Feb at 06:5

How to split large text file in windows?

How to split large text file in windows? I have a log file with size of 2.5 GB. Is there any way to split this file into smaller files using windows command prompt?

3 Aug at 11:40

Does openGL ES have trouble displaying text?

Does openGL ES have trouble displaying text? Someone told me that openGL is for graphic only, and that it's very bad at displaying good readable text. Is that true for openGL ES on iPhone OS?

15 Jul at 16:7

How to print color in console using System.out.println?

How to print color in console using System.out.println? How can I print color in console? I want to show data in colors when the processor sends data and in different colors when it receives data.

24 Jul at 04:6

Extract a single (unsigned) integer from a string

Extract a single (unsigned) integer from a string I want to extract the digits from a string that contains numbers and letters like: I want to extract the number `11`.

22 Nov at 10:33

Find a class somewhere inside dozens of JAR files?

Find a class somewhere inside dozens of JAR files? How would you find a particular class name inside lots of jar files? (Looking for the actual class name, not the classes that reference it.)

Java: print contents of text file to screen

Java: print contents of text file to screen I have a text file named `foo.txt`, and its contents are as below: > thisistext How would I print this exact file to the screen in Java 7?

20 Jun at 09:12

Graphics.DrawString vs TextRenderer.DrawText?Which can Deliver Better Quality

Graphics.DrawString vs TextRenderer.DrawText?Which can Deliver Better Quality TextRenderer is based on GDI and Graphics.DrawString is based on GDI+.Which of these functions can deliver better quality ...

27 Nov at 04:23

How can I use a batch file to write to a text file?

How can I use a batch file to write to a text file? I need to make a script that can write one line of text to a text file in the same directory as the batch file.

18 Oct at 14:40

What is a TimeSpan serialized into in ServiceStack JSON

What is a TimeSpan serialized into in ServiceStack JSON In JSON from ServiceStack, Timespan values look like `P5D` for 5 days, etc. What is the name of this format, where is it defined? I need to pars...

10 Mar at 17:12

Is there a way to convert number words to Integers?

Is there a way to convert number words to Integers? I need to convert `one` into `1`, `two` into `2` and so on. Is there a way to do this with a library or a class or anything?

25 Mar at 05:10