Filter the Number from Character

Hi,
I required to filter the character (Alphabetic) Field Which have the Numbers also.
Example
With Alphabetic Without Alphabetic
GRINNO      CHALLANNO      CHALLANNO
92200035      1a      1
92200056      5371a 5371
92200057      5371b 5371
92200058      5371c 5371
92200060      5372a 5372
92200069      003A 003
92200083      13a      13
92200090      039081a 039081
92200117      5169a 5169
Please reply me.
Regards,
C V S

Are you using oracle9i?
SQL> with mytab as (
  2  select '12345' mycol from dual union all
  3  select 'sagashdgasds' from dual union all
  4  select 'sdhg4gjg34' from dual)
  5  select * from mytab
  6  where translate(mycol,'0123456789','          ')!=mycol;
MYCOL
12345
sdhg4gjg34Max

Similar Messages

  • How to extract the number from image using java

    Hello every one
    i want to develope a project which can extract the number from image
    that i can use as inter or String or char.
    Is there any API in java which provide this type of facility.
    right now i m using java 5
    thanks in Advance
    Jignesh

    In my project i have a image in that i have a
    co-ordinate (x,y) I am still puzzled as to what you seek. It sounds to me like you have a point (x, y) represented by p. in java it's just p.getX() p.getY()
    i want to convert that cordinate to numeric form,
    i mena i want to use that cordinate in somewhere else
    in project.point.getX() point.getY()
    So need to convert it into numeric form u can called
    it OCR also.OCR is optical character recognition. If I want out and took a picture of the US Declaration of Independence and then wanted the words on the parchement in the picture in text form, then I would run the picture through a software program and it would try to optically recognise what lettering and number were present in the picture. In the end, I would have a text of what is written on the US Declaration of Independence.
    Is that what you want?

  • How to filter the Files from SharePoint Document Library based upon cloumn value

    Hi
    I should filter the files from document library. I have column called "Print Status" for the document library the value would be either "Yes" or "No".
    Now i should filter out the files which has "Print Status" as a "Yes".
    I am using SPFolder and SPFile from SharePoint Object Model to traverse the file in doc library.
    How could i do it?
    My Sample code:
    foreach (SPFolder childFolder in folder.SubFolders)
      if (childFolder.Name != "Forms")
        AspControls.TreeNode trn = new System.Web.UI.WebControls.TreeNode(childFolder.Name, "", "~/_layouts/images/itdl.gif", childFolder.ServerRelativeUrl.ToString(), "");
        newNode = TraverseFiles(childFolder, trn);
                                // add the new node to the tree
                                rootNode.ChildNodes.Add(newNode);
                        // loop through the files
                        foreach (SPFile childFile in folder.Files)
                            // create a new node and add to the tree
                            AspControls.TreeNode childNode = new System.Web.UI.WebControls.TreeNode(childFile.Name + " (" + childFile.TimeLastModified.ToShortDateString()
    + ")", Convert.ToString(childFile.Item["ID"]), "~/_layouts/images/" + childFile.IconUrl, childFile.ServerRelativeUrl.ToString(), "");
                            rootNode.ChildNodes.Add(childNode);
    Thanks
    Poomani Sankaran.

    Why do you transvers the file an not use a camp query? In a CAML query you can filter the print status and are able to get all files and folder objects at once.
    Check out the following post: http://social.msdn.microsoft.com/Forums/sharepoint/en-US/8c45b5e2-1fb8-435c-a97d-1d8c6d288d4c/caml-query-to-query-all-the-files-and-folders-in-document-library?forum=sharepointdevelopmentprevious
    Kind regards
    Stefan
    http://www.n8d.at/blog
    Follow me on Twitter: StFBauer |
    n8design
    Microsoft Community Contributor 2011 / 2012
    MCTS - SharePoint / WSS Configuration and Development

  • How do i add the number from app as same as in my 5s and ipadmini

    my mac bought in2011 iPhone 5 s 2013 ipadmini 2013 alls in the new version.

    Sorry - don't know what it is you are asking. What do you mean by "add the number from app"?
    GB

  • HT5035 I had $8 from a gift card in my acct then redeemed the number from a second gift car of $30. The $8 disappeared and now there's only $30 rather than $38? Any ideas?

    I had $8 from a gift card in my acct then redeemed the number from a second gift car of $30. The $8 disappeared and now there's only $30 rather than $38? Any ideas?

    Good advice

  • When i tap a name in favorites it uses the number from the name below the one i want

    when i tap a name in iphone favorites it uses the number from the name below it

    Try this:
    First, turn FaceTime off in Settings>Phone. Then, delete all of your favorites entries. Next, turn FaceTime back on, then add all of your favorites back.

  • HT201269 If I want to take my old iPhone and swap the number from my wife's phone to it so she can use it for her phone how do I do it?

    If I want to take my old iPhone and swap the number from my wife's phone to it so she can use it for her phone how do I do it?

    With AT&T it's ridiculously easy. 
    Create backups for each device
    Log out of iCloud Apple ID
    Erase all content and settings
    Power off the devices
    Change the SIM
    Power on the device
    Configure with the appropriate Apple ID
    Finally, dial 611 to let AT&T know what iPhone should answer to what number.

  • Which method to count the number of character in a string?

    Hi all,
    I want to know which class and method to count the number of character in a string?
    Gary

    http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html

  • How to get the number from a xml file to flash as3 Text Box "Get_Days"?

    Hi,
    I have to daily update the number of days finished from the specified days. Say, One work to be finished in 30 days. And the start day is today. So, tomorrow it will be 29 days left. and so on....
    So, instead of reducing one number everyday from the last days number using flash, it will be easy changing in xml file.
    How can I do that?
    I have a simple text box "dynamic text box" and the instance name : "Days_Left". Since I am learner, I cannot make complex projects. I am learning small things with very few lines of code which can be modified using xml files.
    So, Whatever I type in a xml file, it should appear in a text box called "Days_Left".
    Thanks.

    then you can use:
    var currentDate:Date = new Date(); 
    // this is today's date
    var projectDueDate:Date = new Date(2010,11,29); 
    // use whatever date you want for the due date.
    // months are zero-based.  (ie, jan is month 0, dec is month 11.)
    var daysToCompleteProject:Number = (projectDueDate.getTime()-currentDate.getTime())/(1000*60*60*24);
    // this is number of days between currentDate and projectDueDate.  you probably want to round or use days:hours:minutes for your display

  • How can i parse the number from the string each time automatic ?

    I have this two lines:
    last_file = fi[fi.Length - 1].FullName;
    string lastFileNumber = last_file.Substring(86, 6);
    In last_file i have: C:\\Users\\chocolade1972\\AppData\\Local\\mws\\My Weather Station\\radar_temp_directory\\radar000142.gif
    So i counted and found that the number in this case 000124 is starting from index 86 and length 6
    But for example on my brother pc the directory is shorter the name is not chocolade1972 so the index is incorrect.
    It's not 86.
    How can i use the Substring to find the correct index every time on any pc that have a differenet directory length ?
    In this case it's working fine on my pc for any image i can get the number no problems. But i want it to work also on other pc's.

    You can use Regex to match the filename you want. 
    Like Giovhan suggested you can first get the filename like:
    string result;
    result = Path.GetFileName(fileName);// in your example result = radar000142// in my regex I assume that a file can have a number of digits between 5 to 7 digits.Regex filenameRegex = new Regex("\d{5,7}");string number = filenameRegex.Match(result).Value;// by that way you can retrieve all numbers between 5 to 7 digits regardless of filename whether contains all 6 digits// or file that may contain 5 or 7 digits // You can play with the Regex code to decrease or increase number of digits by changing the numbers

  • Can I change the number from an iphone to a no frills LG phone if they are both registered on the verizon wireless site?

    I would like to switch the phone number on my daughters iphone to a plain, no frills LG phone.  Both are on the verizon wireless web site.  Can this be done and can I switch back to the iphone, via the web, anytime?

    Yes you can as long as you are signed in acct owner click add/change decide on the iPhone and put in the meid from basic phone found under battery then once it's complete turn off iPhone and dial *228 option 1 from basic phone to activate. Yes reverse can be done anytime

  • Query to separate the number and character

    Hi,
    I have the string like '1000xyza' and query should return 1000 only.
    example data:
    source string = '1000xyz'
    output = 1000
    source string = '1000 xyz'
    output = 1000
    I need to use this logic in trigger, and currently I'm checking character by character in for loop to get number and it is taking long time to execute.
    Please suggest better way
    Thanks for help
    Thanks,
    Vijay

    maybe this will somehow help.
    SQL> With virtual_table AS
      2    (Select '1000xyz' str From dual
      3     Union All
      4     Select  '1000 xyz' str From dual)
      5  select vt.str,
      6         trim(translate(vt.str,'1234567890 ',' ')) char_string,
      7         translate(vt.str,translate(vt.str,'1234567890',' '),' ') numbers
      8    from virtual_table vt;
    STR      CHAR_STRING NUMBERS
    1000xyz  xyz         1000
    1000 xyz xyz         1000
    SQL>

  • HT1495 I am using imessage on my phone but i dont want them to appear on my ipad how do i remove the number from my ipad for messages

    Hi i am using an iphone with imessage but I dont want to use that number on my ipad for imessage or facetime can I change this ??

    Use a free gmail.com address on the iPad.
    Using FaceTime http://support.apple.com/kb/ht4319http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/http://www.apple.com/ca/ios/messages/
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Set Up Alert Sounds
    http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htmhttp://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90https://discussions.apple.com/thread/4649373?tstart=90
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.htmlhttp://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457#19087457https://discussions.apple.com/message/19087457#19087457
    How to watch FaceTime calls on the big screen with Apple TV
    http://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetimehttp://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetime
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.htmlhttp://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    How to Receive SMS Messages on an iPad
    http://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.htmlhttp://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.html
    Apps for Texting http://appadvice.com/appguides/show/apps-for-textinghttp://appadvice.com/appguides/show/apps-for-texting
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • How to split the string from character position.

    HI ALL,
    I need to split the string like this.
    example:
    String = "HelloWorld"
    mid("HelloWorld", 2, 5);
    it should print   "ello"
    menas mid is functiuon it will split "HelloWorld" from 2nd character to 5th character and prints "ello".
    This one how to do in labview.
    Regards
    Punith

    String Subset is the function you are looking for.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to retrive the number from the number range

    Hi
    i am using the oracle 9i I have the following table, it contains 4 milion records
    operator Number_series loc
    airtel 9849143161-9849143166 hyd
    symon 625421-625424 pune
    super 53246217-53246220 mum
    from the above mention table how could i retrive the data like
    operator number loc
    airtel 9849143161 hyd
    airtel 9849143162 hyd
    airtel 9849143163 hyd
    airtel 9849143164 hyd
    airtel 9849143165 hyd
    airtel 9849143166 hyd
    symon 625421 pune
    symon 625422 pune
    symon 625423 pune
    symon 625424 pune
    super 53246217 mum
    super 53246218 mum
    super 53246219 mum
    super 53246220 mum

    i am using the oracle 9i I have the following table, it contains 4 milion records
    operator Number_series loc
    airtel 9849143161-9849143166 hyd
    symon 625421-625424 pune
    super 53246217-53246220 mum
    from the above mentiond table how could i retrive the data like
    operator number loc
    airtel 9849143161 hyd
    airtel 9849143162 hyd
    airtel 9849143163 hyd
    airtel 9849143164 hyd
    airtel 9849143165 hyd
    airtel 9849143166 hyd
    symon 625421 pune
    symon 625422 pune
    symon 625423 pune
    symon 625424 pune
    super 53246217 mum
    super 53246218 mum
    super 53246219 mum
    super 53246220 mum

Maybe you are looking for