Sponsored Content
Top Forums Programming Macro to put single quotes around character Post 302565070 by tamil.pamaran on Sunday 16th of October 2011 08:12:02 PM
Old 10-16-2011
Macro to put single quotes around character

Dear Mates,

I am trying to write a macro to replace with its arguments with singles quotes around each argument.

#define DECR(a,b,c,d,e) decr('a','b','c','d','e')

if the usage is

DECR(k,e,y,s,\0)

I want it to be replaced with the following

decr('k','e','y','s','\0')

However it getting replaced with the following

decr('a','b','c','d','e')

Please help me to find out what is wrong my macro.

Thanks in advance,
Tamil Pamaran
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

put double quotes for a column

Hi, I have a file which looks like this, I have stripped most of the columns: 2006,UCA,"02452","NM","1","M","84",123,aa 2006,UCA,"02452","NM","1","L","84",123,bb 2006,UCA,"02452","NM","1","L","84",432,cc 2006,UCA,"02452","NM","1","L","33",213,dd 2006,UCA,"02452","NM","1","L","33",124,ee... (3 Replies)
Discussion started by: sumeet
3 Replies

2. UNIX for Advanced & Expert Users

how to put quotes ina .sql file

Hi i am new on Unix.......... I have to write a ddl and for tables and I am using single quotes in the comment for the table and its column...........but when i see on the unix server the ' dont show . e.g. DROP TABLE DMR_PURGED; CREATE TABLE DMR_PURGED ( HEALTH_SERVICE_ID ... (9 Replies)
Discussion started by: agarwalniru
9 Replies

3. Shell Programming and Scripting

Double quotes or single quotes when using ssh?

I'm not very familiar with the ssh command. When I tried to set a variable and then echo its value on a remote machine via ssh, I found a problem. For example, $ ITSME=itsme $ ssh xxx.xxxx.xxx.xxx "ITSME=itsyou; echo $ITSME" itsme $ ssh xxx.xxxx.xxx.xxx 'ITSME=itsyou; echo $ITSME' itsyou $... (3 Replies)
Discussion started by: password636
3 Replies

4. Shell Programming and Scripting

Single quotes and double quotes

Hi guys, I have a sed line in double quotes which works fine, but I want it to be in single quotes here is the sed line sed "/abc_def/s/\'.*\'/\'\${abc_def}\'/" can some one give the equivalent to the above script in single quotes Thanks a ton (5 Replies)
Discussion started by: sol_nov
5 Replies

5. UNIX for Dummies Questions & Answers

grep single quotes or double quotes

Unix superusers, I am new to unix but would like to learn more about grep. I am very familiar with regular expressions as i have used them for searching text files in windows based text editors. Since I am not very familiar with Unix, I dont understand when one should use GREP with the... (2 Replies)
Discussion started by: george_vandelet
2 Replies

6. Shell Programming and Scripting

Replace multiple occurances of same character with a single character.

Hi all, Greetings, I have the following scenario, The contents of main file are like : Unix|||||forum|||||||||||||||is||||||the||best so||||||be|||||on||||||||||||||||||||||||||||||||||||||||||||it And i need the output in the following form: Unix=forum=is=the=best so=be=on=it ... (3 Replies)
Discussion started by: dipanchandra
3 Replies

7. Shell Programming and Scripting

Replace single quote with two single quotes in perl

Hi I want to replace single quote with two single quotes in a perl string. If the string is <It's Simpson's book> It should become <It''s Simpson''s book> (3 Replies)
Discussion started by: DushyantG
3 Replies

8. Shell Programming and Scripting

Having a terrible problem with quotes/single quotes!

Hello. I'm trying to write a bash script that uses GNU screen and have hit a brick wall that has cost me many hours... (I'm sure it has something to do with quoting/globbing, which is why I post it here) I can make a script that does the following just fine: test.sh: #!/bin/bash # make... (2 Replies)
Discussion started by: jondecker76
2 Replies

9. Shell Programming and Scripting

Put double quotes around numbers

Hi, consider a file which has data such as "random text",912345,"54","finish" "random text",9991236745,"9954","finish" I want to replace the numbers that don't have double quotes around them with ones that do; so the output should be "random text","912345","54","finish" "random... (4 Replies)
Discussion started by: Storms
4 Replies

10. Shell Programming and Scripting

Issue with Single Quotes and Double Quotes for prompt PS1

Hi, Trying to change the prompt. I have the following code. export PS1=' <${USER}@`hostname -s`>$ ' The hostname is not displayed <abc@`hostname -s`>$ uname -a AIX xyz 1 6 00F736154C00 <adcwl4h@`hostname -s`>$ If I use double quotes, then the hostname is printed properly but... (3 Replies)
Discussion started by: bobbygsk
3 Replies
m4(1)							      General Commands Manual							     m4(1)

Name
       m4 - macro processor

Syntax
       m4 [options] [files]

Description
       The  macro  processor  is intended as a front end for Ratfor, C, and other languages.  Each of the argument files is processed in order; if
       there are no arguments, or if an argument is hypen (-), the standard input is read.  The processed text is written on the standard output.

Options
       The options and their effects are as follows:

       -e	      Operate interactively.  Interrupts are ignored and the output is unbuffered.

       -s	      Enable line sync output for the C preprocessor (#line ...)

       -Bint	      Change the size of the push-back and argument collection buffers from the default of 4,096.

       -Hint	      Change the size of the symbol table hash array from the default of 199.  The size should be prime.

       -Sint	      Change the size of the call stack from the default of 100 slots.	Macros take three slots, and non-macro arguments take one.

       -Tint	      Change the size of the token buffer from the default of 512 bytes.

       To be effective, these flags must appear before any file names and before any -D or -U flags:

       -Dname[=val]
	      Defines name to val or to null in val's absence.

       -Uname undefines name.

       Macro calls have the following form:
       name(arg1,arg2, . . . , argn)

       The left parenthesis ( ( ) must immediately follow the name of the macro.  If a defined macro name is not followed by a	left  parenthesis,
       it is deemed to have no arguments.

       Leading	unquoted blanks, tabs, and new lines are ignored while collecting arguments.  Potential macro names consist of alphabetic letters,
       digits, and underscore (_), where the first character is not a digit.

       Left and right single quotes (`') are used to quote strings.  The value of a quoted string is the string stripped of the quotes.

       When a macro name is recognized, its arguments are collected by searching for a matching right parenthesis.  Macro evaluation proceeds nor-
       mally during the collection of the arguments, and any commas or right parentheses which happen to turn up within the value of a nested call
       are as effective as those in the original input text.  After argument collection, the value of the macro is  pushed  back  onto	the  input
       stream and rescanned.

       The  makes available the following built-in macros.  They may be redefined, but once this is done the original meaning is lost.	Their val-
       ues are null unless otherwise stated.

       define		   The second argument is installed as the value of the macro whose name is the first argument.  Each occurrence of $n	in
			   the replacement text, where n is a digit, is replaced by the n-th argument.	Argument 0 is the name of the macro; miss-
			   ing arguments are replaced by the null string.  $# is replaced by the number of arguments; $* is replaced by a list	of
			   all the arguments separated by commas; $@ is like $*, but each argument is quoted (with the current quotes).

       undefine 	   removes the definition of the macro named in its argument.

       defn		   returns the quoted definition of its argument(s).  It is useful for renaming macros, especially built-ins.

       pushdef		   like define, but saves any previous definition.

       popdef		   removes current definition of its argument(s), exposing the previous one, if any.

       ifdef		   If  the  first  argument is defined, the value is the second argument, otherwise the third.	If there is no third argu-
			   ment, the value is null.  The word unix is predefined on UNIX versions of

       changequote	   Change quote characters to the first and second arguments.  The changequote without	arguments  restores  the  original
			   values (that is, `').

       changecom	   change  left  and  right  comment markers from the default # and new-line.  With no arguments, the comment mechanism is
			   effectively disabled.  With one argument, the left marker becomes the argument and the right marker	becomes  new-line.
			   With two arguments, both markers are affected.  Comment markers may be up to five characters long.

       divert		   The	maintains  10  output  streams,  numbered  0-9.  The final output is the concatenation of the streams in numerical
			   order; initially stream 0 is the current stream.  The divert macro changes the current output  stream  to  its  (digit-
			   string) argument.  Output diverted to a stream other than 0 through 9 is discarded.

       undivert 	   causes  immediate  output  of  text	from diversions named as arguments, or all diversions if no argument.  Text may be
			   undiverted into another diversion.  Undiverting discards the diverted text.

       divnum		   returns the value of the current output stream.

       dnl		   reads and discards characters up to and including the next new line.

       ifelse		   has three or more arguments.  If the first argument is the same string as the second, then the value is the third argu-
			   ment.  If not, and if there are more than four arguments, the process is repeated with arguments 4, 5, 6 and 7.  Other-
			   wise, the value is either the fourth string, or, if it is not present, null.

       incr		   returns the value of its argument incremented by 1.	The value of the argument is calculated by interpreting an initial
			   digit-string as a decimal number.

       decr		   returns the value of its argument decremented by 1.

       eval		   evaluates its argument as an arithmetic expression, using 32-bit arithmetic.  Operators include +, -, *, /, %, ^ (expo-
			   nentiation), bitwise &, |, ^, and ~; relationals; parentheses.  Octal and hex numbers may be specified as  in  C.   The
			   second  argument  specifies the radix for the result; the default is 10.  The third argument may be used to specify the
			   minimum number of digits in the result.

       len		   returns the number of characters in its argument.

       index		   returns the position in its first argument where the second argument begins (zero origin), or -1 if the second argument
			   does not occur.

       substr		   returns  a substring of its first argument.	The second argument is a zero origin number selecting the first character;
			   the third argument indicates the length of the substring.  A missing third argument is taken  to  be  large	enough	to
			   extend to the end of the first string.

       shift		   is an unimplemented macro.  Using shift generates an error message.

       translit 	   transliterates  the	characters in its first argument from the set given by the second argument to the set given by the
			   third.  No abbreviations are permitted.

       include		   returns the contents of the file named in the argument.

       sinclude 	   is identical to include, except that it says nothing if the file is inaccessible.

       syscmd		   executes the UNIX command given in the first argument.  No value is returned.

       sysval		   is the return code from the last call to syscmd.

       maketemp 	   fills in a string of XXXXX in its argument with the current process id.

       m4exit		   causes immediate exit from m4.  Argument 1, if given, is the exit code; the default is 0.

       m4wrap		   argument 1 will be pushed back at final EOF.  For example:
			   m4wrap(`cleanup()')

       errprint 	   prints its argument on the diagnostic output file.

       dumpdef		   prints current names and definitions, for the named items, or for all if no arguments are given.

       traceon		   with no arguments, turns on tracing for all macros (including  built-ins).	Otherwise,  turns  on  tracing	for  named
			   macros.

       traceoff 	   turns  off  trace globally and for any macros specified.  Macros specifically traced by traceon can be untraced only by
			   specific calls to traceoff.

See Also
       "The M4 Macro Processor," ULTRIX Supplementary Documents Vol. II:Programmer

																	     m4(1)
All times are GMT -4. The time now is 12:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy