User Rahul - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T06:24:45Zhttp://stackoverflow.com/feeds/user/24424http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1753948/datatype-change-from-varchar30-to-varchar45/1753976#17539760Answer by Rahul for DataType Change from Varchar(30) to Varchar(45)Rahul2009-11-18T06:09:01Z2009-11-18T06:09:01Z<p>Use <a href="http://ss64.com/ora/desc.html" rel="nofollow">"desc"</a> in oracle or an equivalent command depending on the database to describe the table. This will list out all the table columns along with their data types. </p>
http://stackoverflow.com/questions/1558871/how-to-create-ejb-2-1-beans-in-eclipse-3-50How to create EJB 2.1 beans in Eclipse 3.5Rahul2009-10-13T08:22:11Z2009-11-14T14:43:29Z
<p>I am not able to create EJB 2.1 beans using a wizard in the latest version of Eclipse. I only see options to create EJB 3.0 beans.</p>
<p>I selected 2.1 as the 'EJB Module Version' while creating the "EJB Project". But now when I want to create a session bean, I don't see any option to create a 2.1 bean.</p>
<p>Is there a plugin/setting I need to enable ? </p>
http://stackoverflow.com/questions/1720133/how-to-add-particular-value-in-starting-of-each-row-of-an-excel-sheet/1720188#17201880Answer by Rahul for How to add particular value in starting of each row of an excel sheetRahul2009-11-12T05:54:22Z2009-11-12T13:10:40Z<p>Say, if you have data like this</p>
<pre><code> A B
--------- ----------
xyz.com
http://abc.com
yyy.com
</code></pre>
<p>In column B, use a function similar to this.</p>
<pre><code>=IF(ISERR(SEARCH("http:",A1,1)),CONCATENATE("http://",A1),A1)
</code></pre>
<p>Drag down to fill.</p>
<p>This will put an http prefix for all items in A where the prefix doesn't exist. Tweak this a little bit for your specific case if needed.</p>
http://stackoverflow.com/questions/1719261/is-there-an-easier-way-to-parse-xml-in-java/1719427#17194270Answer by Rahul for Is there an easier way to parse XML in Java?Rahul2009-11-12T02:03:00Z2009-11-12T02:03:00Z<p>You could also use <a href="http://www.castor.org/" rel="nofollow">Castor</a> to map the XML to Java beans. I have used it before and it works like a charm.</p>
http://stackoverflow.com/questions/1641461/faster-search-for-files-in-netbeans0Faster search for files in NetbeansRahul2009-10-29T03:32:08Z2009-11-07T12:55:29Z
<p>Is there an existing plugin or tweak that speeds up the "Go To File" search in Netbeans ? Compared to Eclipse, Netbeans search is way too slow specially if one has multiple large size projects.</p>
<p>I know I can use Ctrl+O for "Go To Type" but often I need to search for other file types like XMLs, property files etc. across thousands of files in multiple projects. </p>
<p>I installed the Quick Search plugin but even that doesn't search for non Java file types.</p>
http://stackoverflow.com/questions/1678853/is-there-any-way-to-use-unix-grep-commands-on-windows-operating-system/1678867#16788670Answer by Rahul for Is there any way to use UNIX GREP commands on WIndows operating systemRahul2009-11-05T07:18:52Z2009-11-05T07:18:52Z<p>Install <a href="http://www.cygwin.com/" rel="nofollow">Cygwin</a>. It's a unix emulator and will let you use regex on windows.</p>
http://stackoverflow.com/questions/1659718/how-to-perform-an-inexact-compare-in-java-beans1How to perform an inexact compare in Java beans?Rahul2009-11-02T06:28:07Z2009-11-03T01:38:06Z
<p>I have a large (more than 100K objects) collection of Java objects like below.</p>
<pre><code>public class User
{
//declared as public in this example for brevity...
public String first_name;
public String last_name;
public String ssn;
public String email;
public String blog_url;
...
}
</code></pre>
<p>Now, I need to search this list for an object where at least 3 (any 3 or more) attributes match those of the object being searched.</p>
<p>For example, if I am searching for an object that has</p>
<pre><code> first_name="John",
last_name="Gault",
ssn="000-00-0000",
email="xyz@abc.com",
blog_url="http://myblog.wordpress.com"
</code></pre>
<p>The search should return me all objects where <code>first_name,last_name and ssn</code> match or those where <code>last_name, ssn, email and blog_url</code> match. Likewise, there could be other combinations.</p>
<p>I would like to know what's the best data-structure/algorithm to use in this case. For an exact search, I could have used a hashset or binary search with a custom comparator, but I am not sure what's the most efficient way to perform this type of search.</p>
<p>P.S. </p>
<ul>
<li><p>This is <strong>not</strong> a homework exercise.</p></li>
<li><p>I am not sure if the question title is appropriate. Please feel free to edit.</p></li>
</ul>
<p><strong>EDIT</strong>
Some of you have pointed out the fact that I could use ssn (for ex.) for the search as it is more or less unique. The exmaple above is only illustrative of the real scenario. In reality, I have several objects where some of the fields are null so I would like to search on other fields.</p>
http://stackoverflow.com/questions/1648404/svn-synchronizing-folders/1648430#16484300Answer by Rahul for [SVN]: Synchronizing foldersRahul2009-10-30T07:12:47Z2009-10-30T07:12:47Z<p><a href="http://www.araxis.com/merge/" rel="nofollow">Araxis Merge</a> has automated merge. </p>
http://stackoverflow.com/questions/1642159/whats-the-most-elegant-way-to-concatenate-a-list-of-values-with-delimiter-in-jav5What's the most elegant way to concatenate a list of values with delimiter in Java?Rahul2009-10-29T07:47:43Z2009-10-29T10:57:34Z
<p>I have never found a neat(er) way of doing the following.</p>
<p>Say I have a list/array of strings. </p>
<pre><code>abc
def
ghi
jkl
</code></pre>
<p>and I want to concatenate them into a single string delimited by a comma as follows:</p>
<pre><code>abc,def,ghi,jkl
</code></pre>
<p>In Java, if I write something like this (pardon the syntax)</p>
<pre><code>String[] list = new String[] {"abc","def","ghi","jkl"};
String str = null;
for (String s : list)
{
str = str + s + "," ;
}
System.out.println(str);
</code></pre>
<p>I'll get </p>
<pre><code>abc,def,ghi,jkl, //notice the comma in the end
</code></pre>
<p>So I have to rewrite the above for loop as follows</p>
<pre><code>...
for (int i = 0; i < list.length; i++)
{
str = str + list[i];
if (i != list.length - 1)
{
str = str + ",";
}
}
...
</code></pre>
<p>My question is , can this be done in a more elegant way in java? </p>
<p>EDIT: I would certainly use a StringBuilder/Buffer for efficiency but wanted to illustrate the case in point without being too verbose. By elegant, I mean a solution that avoids the ugly(?) if check inside the loop.</p>
http://stackoverflow.com/questions/1636765/does-netbeans-support-coloring-for-sh-bash-scripts/1641335#16413351Answer by Rahul for does netbeans support coloring for .sh (bash) scripts?Rahul2009-10-29T02:42:45Z2009-10-29T02:42:45Z<p>I have not tried this myself but you can get shell script support in Netbeans if you install the <strong>C/C++ plugin</strong>. </p>
http://stackoverflow.com/questions/1635136/how-to-set-default-main-class-in-java/1635170#16351700Answer by Rahul for how to set default main class in java?Rahul2009-10-28T04:17:15Z2009-10-28T04:17:15Z<p>Best way is to handle this in an Ant script. You can create 2 different tasks for the 2 jar files. Specify class A as the main class in the manifst file for the first jar. similarly specify class B as the main class in the manifest file for the second jar.</p>
<p>you can easily run the Ant tasks from Netbeans.</p>
http://stackoverflow.com/questions/1635127/hashmap-and-incrementing-values-in-procesing/1635149#16351490Answer by Rahul for HashMap and incrementing values in ProcesingRahul2009-10-28T04:10:35Z2009-10-28T04:10:35Z<p>I don't know anything about 'Processing' but looking at the above code, you need to typecast the value into an integer before adding.</p>
<p>Not sure what version of Java is being used here but you can do something like this.</p>
<pre><code>if (colors.containsKey(ckey))
{
int val = ((Integer) colors.get(ckey)).intValue();
colors.put(ckey, new Integer(val + 1);
}
else
{
colors.put(ckey, 1);
}
</code></pre>
http://stackoverflow.com/questions/1634969/how-to-scrape-web-pages-that-are-in-different-format-layouts1How to scrape web pages that are in different format/layouts ?Rahul2009-10-28T02:55:10Z2009-10-28T03:01:09Z
<p>I need to scrape Form 10-K reports (i.e. annual reports of US companies) from <a href="http://www.sec.gov/" rel="nofollow">SEC website</a> for a project. </p>
<p>The trouble is, companies do not use the exact same format for filing this data. So for ex., real estate data for 2 different companies could be displayed as below</p>
<pre><code>1st company
Property name State City Ownership Year Occupancy Total Area
------------- ----- ------ --------- ---- --------- ----------
ABC Mall TX Dallas Fee 2007 97% 1,347,377
XYZ Plaza CA Ontario Fee 2008 85% 2,252,117
2nd company
Property % Ownership %Occupany Rent Square Feet
--------------- ----------- --------- ----- -----------
New York City
ABC Plaza 100.0% 89.0% 38.07 2,249,000
123 Stores 100.0% 50.0% 18.00 1,547,000
Washington DC Office
12th street .......
2001, J Drive .......
etc.
</code></pre>
<p>Likewise, the data layout could be entirely different for other companies. </p>
<p>I would like to know if there are better ways to scrape this type of heterogenous data other than writing complex regex searches. </p>
<p>I have the liberty to use Java, Perl, Python or Groovy for this work.</p>
http://stackoverflow.com/questions/1617521/how-i-can-create-my-own-jar-using-eclipse-or-ant/1623898#16238981Answer by Rahul for how i can create my own jar using eclipse or ant??Rahul2009-10-26T09:37:42Z2009-10-26T09:37:42Z<p>In Eclipse, you can use the "export" option on the project to create a jar file. This will open the JAR creation wizard.</p>
<p>Tip: Wwhile creating the jar, choose to save the jar description file in your project workspace. Then subsequently, just right click the jar description file and select "create jar" to recreate the jar file whenever you need.</p>
http://stackoverflow.com/questions/1605325/aggregate-function-in-comparison-of-2-rows-in-the-same-table-sql/1605373#16053730Answer by Rahul for Aggregate function in comparison of 2 rows in the same table (SQL)Rahul2009-10-22T06:35:08Z2009-10-22T06:35:08Z<p>Assuming I understood your requirements correctly, here's something you can try.</p>
<pre><code>select a.id,
a.mydate as date_actual,
a.value as value_actual,
b.date as date_previous,
b.value as value_previous
from mytable a, mytable b
where a.id = b.id and
a.mydate > b.mydate and
b.mydate = (select max(mydate) from mytable c where c.id = a.id and c.mydate < a.mydate)
</code></pre>
<p>Apologies for the ugly SQL. I am sure there are better ways of doing this.</p>
http://stackoverflow.com/questions/1605295/a-beginners-question-on-web-technologies/1605316#16053163Answer by Rahul for A beginner's question on web technologies.Rahul2009-10-22T06:16:05Z2009-10-22T06:16:05Z<p>1) Yes. But it is advisable to pick one technology/web framework and master it. It is easy to get caught in the technology rat race.</p>
<p>2) Think of a problem you have been facing say at workplace. Perhaps there is some routine work that can be done better using a web application. Use that as a project. </p>
<p>4) Read up on basic design principles like layout, color etc. <a href="http://rads.stackoverflow.com/amzn/click/1566091594" rel="nofollow">The Non-Designer's design book</a> is a good place to start.</p>
http://stackoverflow.com/questions/1605277/substitute-mysql-result/1605291#16052912Answer by Rahul for Substitute MySQL resultRahul2009-10-22T06:06:25Z2009-10-22T06:06:25Z<p>You can use the SQL CASE statement to do this in a single query. </p>
<pre><code>Select account_number, total_paid, doc_date,
case doctype
when 'IN' then 'Invoice'
when 'PO' then 'Online Payment'
end
from table
</code></pre>
http://stackoverflow.com/questions/1605232/use-bash-to-read-a-file-and-then-execute-a-command-from-the-words-extracted/1605257#16052574Answer by Rahul for Use bash to read a file and then execute a command from the words extractedRahul2009-10-22T05:54:19Z2009-10-22T05:54:19Z<p>You can use the "for" loop to do this. something like..</p>
<pre><code>for WORD in `cat FILE`
do
echo $WORD
command $WORD > $WORD
done
</code></pre>
http://stackoverflow.com/questions/1605145/how-should-i-use-a-jar-file/1605184#16051841Answer by Rahul for How should i use a jar file ?Rahul2009-10-22T05:27:58Z2009-10-22T05:27:58Z<p>Jar file is a way to package java classes. To use the classes in the jar file, you need to include the jar in your classpath.</p>
<p>You need to then import the required class(es) in your java code and access them. </p>
<p>Of course you need to know how to use these classes i.e. what public methods etc. they expose. </p>
<p>If these jars correspond to some 3rd party library, you need to check the documentation (maybe on the web) to see how to use the classes.</p>
http://stackoverflow.com/questions/1592757/when-is-messaging-e-g-jms-an-alternative-for-multithreading2When is messaging (e.g. JMS) an alternative for multithreading ?Rahul2009-10-20T06:12:07Z2009-10-20T09:43:06Z
<p>I work on a data processing application in which concurrency is achieved by putting several units of work on a message queue that multiple instances of a message driven bean (MDB) listen to. Other then achieving concurrency in this manner, we do not have any specific reason to use the messaging infrastructure and MDBs.</p>
<p>This led me to think why the same could not have been achieved using multiple threads. </p>
<p>So my question is, in what situations can asynchronous messaging (e.g. JMS) be used as an alternative to mutithreading as a means to achieve concurrency ? What are some advantages/disadvantages of using one approach over another.</p>
http://stackoverflow.com/questions/1592780/is-there-a-jms-queue-browser-gui-tool-that-can-integrate-with-glassfish0Is there a JMS queue browser GUI tool that can integrate with Glassfish ?Rahul2009-10-20T06:19:23Z2009-10-20T06:32:19Z
<p>The title says it all. </p>
<p>I have a few JMS queues created on Glassfish 2.1 server. I need a GUI browser that lets me view the messages being sent to the queue in real time.</p>
<p>I read about <a href="http://www.hermesjms.com/confluence/display/HJMS/Home" rel="nofollow">Hermes</a> on another SO thread but I am not sure if it works with Glassfish.</p>
<p>I also installed <a href="http://blogs.sun.com/toxophily/entry/building%5Fjms%5Fbrowser%5Fnetbeans%5Fplug" rel="nofollow">this</a> plugin for Netbeans but it isn't working for me ( I get a CAPSManagementRemoteException exception). </p>
http://stackoverflow.com/questions/1569955/cleanly-translate-x-to-y-and-y-to-x-using-a-find-replace-regex-in-textmate/1570457#15704570Answer by Rahul for Cleanly translate (x to y) and (y to x) using a find/replace/regex in TextMate.Rahul2009-10-15T05:30:44Z2009-10-15T05:44:04Z<p>I have never used TextMate but can you not do something like this ?</p>
<pre><code>1. Replace all "true" with some dummy value, say "hello"
2. Replace all "false" with "true"
3. Replace all "hello" with "false"
</code></pre>
<p>Of course this involves 3 find-replaces and not 1 as you've requested.</p>
http://stackoverflow.com/questions/1570257/how-can-i-quote-the-data-within-my-cells/1570410#15704100Answer by Rahul for How can I quote the data within my cells?Rahul2009-10-15T05:15:30Z2009-10-15T05:15:30Z<p>Maybe you can use a text editor (like TextPad or Notepad++) for this kind of job. Find replace is more powerful in these editors. </p>
<p>If your data is tab separated, you can easily copy paste data between Excel and Textpad/Notepad++ without losing any formatting. </p>
http://stackoverflow.com/questions/1564763/ant-copy-only-file-not-directory/1564814#15648140Answer by Rahul for Ant - copy only file not directoryRahul2009-10-14T07:41:56Z2009-10-14T07:41:56Z<p>Can you try</p>
<pre><code><copy todir="targetsir">
<fileset dir="srcdir">
<include name="*.*"/>
</fileset>
</copy>
</code></pre>
<p>** is used to match a directory structure.</p>
http://stackoverflow.com/questions/1564728/use-select-query-inside-the-insert-query-for-the-same-table-name/1564753#15647530Answer by Rahul for Use select query inside the Insert query for the same table nameRahul2009-10-14T07:22:33Z2009-10-14T07:22:33Z<p>I don't know mysql but can you try the following ?</p>
<pre><code>insert into sample_elements select name, id, 0 from sample_elements where name='Namespace1'
</code></pre>
http://stackoverflow.com/questions/1563949/ways-to-do-a-2-dimensional-array-in-java/1563974#15639741Answer by Rahul for Ways to do a 2 dimensional array in java?Rahul2009-10-14T02:33:47Z2009-10-14T02:33:47Z<p>I am assuming you need a data structure in Java to store these values.</p>
<p>You could define a 2D array in Java using the following syntax.</p>
<pre><code>String[][] strArr = new String[5][5]; //defines a 5*5 String array
String[][] strArr2 = new String[1][2]; //defines a 1*2 String array
</code></pre>
<p>Please note that the arrays can hold values of only 1 datatype. The specific items can be dereferenced using something like</p>
<pre><code>System.out.println(strArr2[0][1]);
</code></pre>
<p>For your specific example, you could also use java.util.Map class and store the data as key-value pairs but this requires the "keys" to be unique. e.g.,</p>
<pre><code>Map<String,Integer> keyval = new HashMap<String, Integer>();
keyval.put("B",1);
keyval.put("C",2);
keyval.put("D",3);
keyval.put("D",4); //wrong. will overwrite the previous entry.
</code></pre>
http://stackoverflow.com/questions/1563909/how-to-set-classpath-when-i-use-javax-tools-javacompiler-compile-the-source/1563951#15639510Answer by Rahul for How to set classpath when I use javax.tools.JavaCompiler compile the source? Rahul2009-10-14T02:23:22Z2009-10-14T02:23:22Z<p>This is not a real answer but do checkout this resource from IBM developerworks: <a href="http://www.ibm.com/developerworks/java/library/j-jcomp/index.html" rel="nofollow">http://www.ibm.com/developerworks/java/library/j-jcomp/index.html</a></p>
<p>The article explains in detail how to use JavaFileManager to set the classloader. Hope this helps.</p>
http://stackoverflow.com/questions/1558664/java-packaging-issue/1558764#15587641Answer by Rahul for Java packaging issueRahul2009-10-13T07:52:14Z2009-10-13T07:52:14Z<p>You can put the log4j.properties anywhere as long as it is in the classpath. so, as @skaffman suggested, put the log4j properties file in the etc directory which is already in your classpath. </p>
<p>An alternative to using PropertyConfigurator is to set this syetm property while running your app. </p>
<pre><code>-Dlog4j.configuration=log4j.properties
</code></pre>
http://stackoverflow.com/questions/1558509/regular-expression-in-asp-net/1558530#15585300Answer by Rahul for regular expression in asp.netRahul2009-10-13T06:43:38Z2009-10-13T07:43:40Z<p>Perhaps something like this may help.</p>
<pre><code>^[0-9]{9}.
</code></pre>
<p>EDIT: Removed escape characters.</p>
http://stackoverflow.com/questions/1558714/how-to-report-todos-etc-with-cruiseconrol/1558733#15587333Answer by Rahul for How to report TODOs etc. with CruiseConrol?Rahul2009-10-13T07:41:43Z2009-10-13T07:41:43Z<p>You could write a small script that "grep" for all //TODO tags in your soruce code files and prints a report. This script can then be called from ant so that the build output contains this report.</p>
http://stackoverflow.com/questions/1753948/datatype-change-from-varchar30-to-varchar45/1753953#1753953Comment by Rahul on DataType Change from Varchar(30) to Varchar(45)Rahul2009-11-18T06:07:03Z2009-11-18T06:07:03ZI don't think he is asking how to alter the data type. His question is on how to test that the change has indeed happened.http://stackoverflow.com/questions/1727603/places-where-java-beans-usedComment by Rahul on places where Java Beans used?Rahul2009-11-13T09:37:30Z2009-11-13T09:37:30ZI hope you are not confusing between "Java beans" and "Enterprise Java Beans or EJBs". http://stackoverflow.com/questions/1720105/what-is-the-difference-between-group-by-and-distinctComment by Rahul on What is the difference between GROUP BY and DISTINCT?Rahul2009-11-12T05:40:50Z2009-11-12T05:40:50ZI guess you need to first explain what result you are expecting ? DISTINCT works on all columns. so your second query gave you 2 unique rows of data even though deptid is same. Use GROUP BY for aggregate functions like count or sum. http://stackoverflow.com/questions/1659718/how-to-perform-an-inexact-compare-in-java-beans/1662986#1662986Comment by Rahul on How to perform an inexact compare in Java beans?Rahul2009-11-03T01:35:26Z2009-11-03T01:35:26Z@moowiz2020 and @Artelius, good points. But this is just an example to illustrate the problem. In reality, the items I am searching for are not so unique or always available (e.g., for some users, ssn is null). Perhaps I should have chosen a better example. http://stackoverflow.com/questions/1648880/java-gc-name-marksweepcompactComment by Rahul on java GC name 'MarkSweepCompact'Rahul2009-10-30T09:52:02Z2009-10-30T09:52:02ZYou are asking very basic questions that can be easily answered by seraching on Google or by referring to any java book. http://stackoverflow.com/questions/1642159/whats-the-most-elegant-way-to-concatenate-a-list-of-values-with-delimiter-in-jav/1642163#1642163Comment by Rahul on What's the most elegant way to concatenate a list of values with delimiter in Java?Rahul2009-10-29T07:54:40Z2009-10-29T07:54:40ZThanks for the link. I am looking for a more elegant approach (perhaps one that involves fewer lines of code). Performance, in my case, is not such a major concern.http://stackoverflow.com/questions/1635319/joining-3-tables-with-similar-structureComment by Rahul on Joining 3 tables with similar structure Rahul2009-10-28T05:21:42Z2009-10-28T05:21:42ZCan there be same reg_id values in a single table ? Can there be some reg_ids that are present in one table but not in the other two ?http://stackoverflow.com/questions/1629411/possible-ways-to-abstract-away-hard-coded-path-names-for-properties-file-in-javaComment by Rahul on Possible ways to abstract away hard-coded path-names for properties file in java appRahul2009-10-27T08:33:41Z2009-10-27T08:33:41ZRather out of the box but is it possible to create symbolic-links mimicing the hardcoded paths on your unix setup ? http://stackoverflow.com/questions/1623986/problem-in-starting-stopping-the-tomcat-server-repeatedlyComment by Rahul on Problem in starting/stopping the TOMCAT server repeatedlyRahul2009-10-26T10:05:55Z2009-10-26T10:05:55ZCan you post the stack trace ?http://stackoverflow.com/questions/1611990/how-can-i-replace-all-hotmail-com-addresses-in-a-file-with-another-email-address/1612053#1612053Comment by Rahul on How can I replace all hotmail.com addresses in a file with another email address, using Perl? Rahul2009-10-23T08:29:46Z2009-10-23T08:29:46ZBut the correct regular expression to achieve this would still be needed.http://stackoverflow.com/questions/1605325/aggregate-function-in-comparison-of-2-rows-in-the-same-table-sql/1605373#1605373Comment by Rahul on Aggregate function in comparison of 2 rows in the same table (SQL)Rahul2009-10-22T06:55:53Z2009-10-22T06:55:53Z@van, thanks for pointing that out. you are right. I'll edit the query to use left joins. http://stackoverflow.com/questions/1605377/how-to-read-xml-property-value-using-javaComment by Rahul on How to read XML Property value using JavaRahul2009-10-22T06:45:31Z2009-10-22T06:45:31ZThis looks like a hibernate configuration file. So perhaps there is some standard way (an API?) to get the values from this XML. In other words, you may not need to parse the XML yourself.http://stackoverflow.com/questions/1605265/union-query-in-mysqlComment by Rahul on Union query in mysqlRahul2009-10-22T06:01:47Z2009-10-22T06:01:47Z@Lavanya, can you explain what the 2 tables look like and how you want the output to be ? http://stackoverflow.com/questions/1605200/if-it-is-technology-specific-is-it-still-a-design-pattern/1605207#1605207Comment by Rahul on If it is technology specific, is it still a design pattern?Rahul2009-10-22T05:41:15Z2009-10-22T05:41:15Z+1. Wish I could give you another vote for the great answer.http://stackoverflow.com/questions/1605048/how-to-convert-string-into-number-using-expression-transformation-in-informaticaComment by Rahul on How to convert string into number using expression transformation in informatica?Rahul2009-10-22T05:33:16Z2009-10-22T05:33:16Z@madhina, do you mean "with" or "without" the $ symbol ? If you wish to convert this to a number, you'll have to strip out the '$' symbol.