Sponsored Content
Top Forums Programming Replace one space with nothing Post 302500232 by kurumi on Monday 28th of February 2011 02:51:39 AM
Old 02-28-2011
Code:
$ echo "d o g   e v o l" | ruby -e 'print gets.gsub(/\b \b/,"").gsub(/  +/," ")'
dog evol

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Replace , (comma) with space

Hi, what is the better way to replace the , (comma) with a space char? Example:STRING=dir1,dir2,dir3 toSTRING=dir1 dir2 dir3 And.. how to find if in the string there is a comma? Thanks :) (6 Replies)
Discussion started by: mbarberis
6 Replies

2. Shell Programming and Scripting

replace space by _

Hi I need to know how I change the spaces by _ in folders and filder founded by find ex. find . -name "* *" -exec echo {} \; ./test space ./test space/new file.txt ./test space/new file ./test space/untitled folder ./test space/untitled folder/new fileruben ./Backup/backup/Image... (6 Replies)
Discussion started by: ruben.rodrigues
6 Replies

3. Shell Programming and Scripting

Replace space

Hai masters, If a file contains content of 2000 lines, from which i need to remove the first n characters or first n spaces from each line of the file. If suppose to remove n characters or first n spaces from a single line means, just use the command nx. But from the above scenario,... (9 Replies)
Discussion started by: ecearund
9 Replies

4. Shell Programming and Scripting

Replace long space to become one space?

Hi, i have the log attached. Actually i want the long space just become 1 space left like this : Rgds, (12 Replies)
Discussion started by: justbow
12 Replies

5. Shell Programming and Scripting

Replace every other space

I'd like a sed command to replace every other space in my file. File: 0 1 0 3 0 2 0 5 Want: 01 03 02 05 Does anyone have any ideas? (9 Replies)
Discussion started by: peanuts48
9 Replies

6. UNIX for Dummies Questions & Answers

Replace slash / with space

Hello there everyone. would like to ask for help if i wish to replace a slash / with space using sed. Original: T/T Result: T T hope someone could help me up, thanks Charles (4 Replies)
Discussion started by: seiksoon
4 Replies

7. Shell Programming and Scripting

replace space for enter

i have to print in a html file directories like this /home/user /home/user/dir but the problem is that when i us this comand listado=`find $direcreal -type f -print` i get this /home/user /home/user/dir1 i try with sed to replace the space with an enter mostrarlistado=`echo "$listado"... (9 Replies)
Discussion started by: pc03
9 Replies

8. Shell Programming and Scripting

replace space with the help of sed

Hi, i have below string - mynameis arpit i want output like below - mynameis\ arpit that i am getting from below - temp='mynameis arpit' echo $temp|sed 's//\\ /g' --> mynameis\ arpit now i am doing - (2 Replies)
Discussion started by: thearpit
2 Replies

9. UNIX for Dummies Questions & Answers

replace %20 with space

Hi, I need torename filenames with %20 to space in a batch wise.Can anyone help me please. Need it badly Eg. English%20Brochure%20002-1 to be replace to English Brochure 002-1 Thanks a lot Please use and tags when posting code, data or logs etc. to preserve formatting... (8 Replies)
Discussion started by: umapearl
8 Replies

10. UNIX for Dummies Questions & Answers

How to replace text with space in vi?

Hi, In the vi editor, I could do a search and replace: :%s/work/play/g but how do I do this for a string/text with space? like if I want to replace all text of "come here" with text "go there"? I've tried with quotes, double quotes, back slash, none of them worked. thanks!... (1 Reply)
Discussion started by: seafan
1 Replies
ERUBIS(1)							   User Commands							 ERUBIS(1)

NAME
erubis - eRuby style template engine for multiple languages SYNOPSIS
erubis [..options..] [file ...] DESCRIPTION
Embedded templating engine for multiple languages. Erubis will take a template file as input and output code to convey that data in the language specified. The following output languages are supported: * Ruby * PHP * C * Java * Scheme * Perl * JavaScript OPTIONS
-h, --help help -v version -x show converted code -X show converted code, only ruby code and no text part -N numbering: add line numbers (for '-x/-X') -U unique: compress empty lines to a line (for '-x/-X') -C compact: remove empty lines (for '-x/-X') -b body only: no preamble nor postamble (for '-x/-X') -z syntax checking -e escape (equal to '--E Escape') -p pattern embedded pattern (default '<% %>') -l lang convert but no execute (ruby/php/c/java/scheme/perl/js) -E e1,e2,... enhancer names (Escape, PercentLine, BiPattern, ...) -I path library include path -K kanji kanji code (euc/sjis/utf8) (default none) -c context context data string (yaml inline style or ruby code) -f datafile context data file ('*.yaml', '*.yml', or '*.rb') -T don't expand tab characters in YAML file -S convert mapping key from string to symbol in YAML file -B invoke 'result(binding)' instead of 'evaluate(context)' --pi=name parse '<?name ... ?>' instead of '<% ... %>' supported properties: * (common) --escapefunc=nil : escape function name --pattern="<% %>" : embed pattern --trim=true : trim spaces around <% ... %> --preamble=nil : preamble (no preamble when false) --postamble=nil : postamble (no postamble when false) --escape=nil : escape expression or not in default * (basic) * (pi) --pi="rb" : PI (Processing Instrunctions) name --embchar="@" : char for embedded expression pattern('@{...}@') * ruby * php * c --indent="" : indent spaces (ex. ' ') --out="stdout" : output file pointer name * java --indent="" : indent spaces (ex. ' ') --buf="_buf" : output buffer name --bufclass="StringBuffer" : output buffer class (ex. 'StringBuilder') * scheme --func="_add" : function name (ex. 'display') * perl --func="print" : function name * javascript --docwrite=true : use 'document.write()' when true EXAMPLES
Run 'erubis -l php example.ephp' to convert the embedded document to php code. example.ephp: <?xml version="1.0"?> <html> <body> <p>Hello <%= $user %>!</p> <table> <tbody> <% $i = 0; %> <% foreach ($list as $item) { %> <% $i++; %> <tr bgcolor="<%= $i % 2 == 0 ? '#FFCCCC' : '#CCCCFF' %>"> <td><%= $i %></td> <td><%== $item %></td> </tr> <% } %> </tbody> </table> </body> </html> SEE ALSO
http://rubyforge.org/projects/erubis/ erubis 2.6.2 January 2009 ERUBIS(1)
All times are GMT -4. The time now is 12:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy