Tagged Questions
The textutils tag has no wiki summary.
3
votes
4answers
2k views
Fill placeholders in file in single pass
I have a skeleton text file with placeholder strings:
blah blah blah
blah $PLACEHOLDER_1$
blah
$PLACEHOLDER_2$
and so on. Specific "form" of placeholders does not matter -- I may change them to ...
2
votes
1answer
488 views
Android TextUtils.split to deliver a fixed length string[]
I cannot get a string broken into fixed length chunks and added to an ArrayList ... the code below iterates through as expected, but all the messageToSplit[] upto the last one are null. The last one ...
1
vote
5answers
443 views
Search and replace in Shell
I am writing a shell (bash) script and I'm trying to figure out an easy way to accomplish a simple task.
I have some string in a variable.
I don't know if this is relevant, but it can contain spaces, ...