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:
- Modified
- 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)
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?
- Modified
- 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.
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.
- Modified
- 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?
- Modified
- 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?
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)
- Modified
- 8 Jun at 20:46
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)?
- Modified
- 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
- Modified
- 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?
- Modified
- 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?
- Modified
- 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...
- Modified
- 20 Jul at 04:4
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' ?
- Modified
- 10 Feb at 06:5
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?
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.
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`.
- Modified
- 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.)
- Modified
- 11 Aug at 09:49
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?
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 ...
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.
- Modified
- 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...
- Modified
- 10 Mar at 17:12