Suppression of zeros of a string value

Hi all

I have a requirement like, I need delete zeros of a string value.

like, 00Raj00Shekar is > Raj00shekar.

How can I do this?

If it is only with custom functions, where can add fuction to Jdeveloper and SOA Middle ware?

Thanks in advance,

REDA

Hi reda,.

You can use following function to get the result desired by xsl.

HTH,

Kind regards

Vikas marzouk

Tags: Fusion Middleware

Similar Questions

  • How to use a String function Find() during a Test of a string value?

    Hello

    I intend to match a substring of the string returned by my USE when the use of a string value test - call of VI.

    I write the string returned for a string variable local (Locals.data_read) and tab limits - under the expected string value using Find (Locals.data_read, 'Connected'). When I check the expression to find errors - I get a warning "expected a string number found {comma floating 64}.» This value will cause a runtime error. »

    What Miss me?

    Thank you

    Kech

    Here is an example showing both.

  • Save the alphanumeric string value

    Hello!
    How to save a value to a variable so that I can use it in the future? I have a string of output of a case structure proposed by an OK botton. I want to save the string value when I press the ok botton...
    Thanks in advance
    GM

    Just write the string in a text file.  When you want to use it later, to read the text file.

  • Have to reset the flag of string value

    Hello everyone

    I'm trying to reset the flag of string value.

    I use node string indicator property to change the color, its evolution, but when the program runs again it should start default how to do it. Thanks in advance

    Here, it's in 2009

  • Put the string value in a table

    Hello

    Probably an easy question, but I am reading data of a RFID reader that returns a string value of 12 bytes. Whenever a RFID reads, I want the tag to be inserted in a string table on the front panel. So, basically, a newspaper of the each tag [read-> Insert row 0] then [read-> Insert level 1] and so on. I work RFID reader, I don't know how to put the string in the table.

    I'm not sure of the steps necessary to achieve control of the table (or if the table control is the right thing to use).

    Any help would be greatly appreciated. Thank you.


  • Adds a zero number to string conversion

    So I have a 0 in int format. I want to convert to a string so that it indicates "00". Is there an easy way to do it in labview? or if I have 1 to int, I want to convert it to a string value of "01." Help?

    Thank you!

    You just need to use % 02d as the format specifier with your function in the Format string. If you move your mouse over the function and right click, you can select "modify Format strings. The popup will provide assistance.

  • Switching between 2 string values

    It is probably a trivial question, but how to move between 2 string values to send to an entry of a larger chain of concatonated function. The values need to be changed every 100ms or so.

    Thank you

    mhaque

    You're right, it is trivial.

    Best regards

    Balze

    P.S.: Attachment VI LV2009

  • Could not save the different string value to each element of the array

    I have a configuration of VI to read several channels Veristand project.  The entrance is a table 1 d of channels, (an element for each channel, I want to read).  The channels have different names, each of the elements in the chain must be different.  I am able to edit each item and run the VI, and it works fine.  However, if I save, close and reopen the VI, all elements show the same value (what happens to the value of the last element for which I defined a default value).  Is this behavior planned, or have I missed a configuration setting which would allow different string values?  Please notify.  Thank you.

    GSinMN

    Make sure that you select the table and not only one item when you right click-> set by default on the front panel.

  • Can I pass a string value to a double digital display?

    I do a test sequence and save each test datas. When I get around one of the tests, I need the string value "BP" to be saved (in double digital indicator) for this particular criterion. Is there a possible way to do it?

    Maybe just use "NaN" instead of "BP". You can store a NaN in the digital indicator.

  • How to store the query string value in the scope of the session in webcenter spaces?

    Hello

    I want to store the query string value (which is given from URL) in the sessionScope variable. According to the value of sessionScope beacause I went some components inside my taskflow. Can someone help me how to store this value in the scope of the session. I use webcenter spaces for my application development.

    Thank you

    Ashok.

    Please see the article below

    How to pass a parameter of argument the query URL to a parameter input workflow? (Doc ID 1545808.1).

  • comparing string values in the same table

    I have a table with ID (14 digit string values) starting with "A". Ex: A21849B1020792. There may be a different ID with the same substring 'B1020792' in the same table, example: A12349B1020792. If this happens, the ID of the last creation date of must be returned in the result. In other words, comparison is done on the same table. "In the example provided, say A12349B1020792 has the date of 1 January 2015 'and A21849B1020792 has date February 1, 2015", since A21849B1020792 has the most recent date, the result must contain only A21849B1020792.

    ID create_date

    ---                              ------------------

    A21849B1020792 02/01/2015

    A12349 B1020792 01/01/2015

    A12345B1234567 01/03/2015      

    A43567B1234567 01/04/2015      


    Here's the query I used:

    substr (a.id, 7) select sc, max (a.create_date) cd1

    of table a, table b

    where a.id! = b.id

    and substr (a.id, 7) = substr (b.id, 7)

    and a.id like 'A %' and b.id like 'A %' / * (I used a % because I am interested only IDs that begin with A) * /.

    and a.id ('A12349B1020792', 'A21849B1020792','A12345B1234567 ','A43567B1234567')

    Group of substr (a.id, 7);

    Result:

    ---------

    sc                    cd1

    ---                    ------

    B1020792 02/01/2015

    B1234567 04/01/2015

    There is one thing that I'm not able to do with my request, that is, be able to get real IDs list and not list of substrings. If I added a.id column in the select clause and the group by clause, the query includes both by substr (a.id, 7) and a.id and as a result, the query returns four lines as below:

    substr (a.id, 7) select sc, max (a.create_date) cd1, a.id ID

    of table a, table b

    where a.id! = b.id

    and substr (a.id, 7) = substr (b.id, 7)

    and a.id like 'A %' and b.id like 'A %' / * (I used a % because I am interested only IDs that begin with A) * /.

    and a.id ('A12349B1020792', 'A21849B1020792','A12345B1234567 ','A43567B1234567')

    Group by substr (a.id, 7), a.id.

    Result:

    ---------

    sc                    cd1                      ID

    ---                    ------                   ---------

    01/01/2015 A12349B1020792 B1020792

    B1020792 01/02/2015 A21849B1020792

    B1234567 01/03/2015 A12345B1234567

    B1234567 01/04/2015 A43567B1234567


    My goal is to retrieve a list of all the unique identifiers that have the later dates.


    ID:

    ---

    A21849B1020792

    A43567B1234567


    Thanks for your time in advance!

    Hello

    user11951344 wrote:

    I have a table with ID (14 digit string values) starting with "A". Ex: A21849B1020792. There may be a different ID with the same substring "B1020792" in the same table, example: A12349B1020792. If this is the case, the ID of the last creation date must be returned in the result. In other words, comparison is done on the same table. "In the example provided, say A12349B1020792 updated 1 January 2015 ' and A21849B1020792 a date February 1, 2015", as A21849B1020792 has the most recent date, the result should contain only the A21849B1020792.

    ID create_date

    ---                              ------------------

    A21849B1020792 02/01/2015

    A12349B1020792 01/01/2015

    A12345B1234567 03/01/2015

    A43567B1234567 01/04/2015

    Here's the query I used:

    substr (a.id, 7) select sc, max (a.create_date) cd1

    of table a, table b

    where a.id! = b.id

    and substr (a.id, 7) = substr (b.id, 7)

    and a.id like 'A %' and b.id like 'A %' / * (I used a % because I am interested only IDs that begin with A) * /.

    and a.id ('A21849B1020792', 'A12345B1234567', 'A12349B1020792', 'A43567B1234567')

    Group of substr (a.id, 7);

    Result:

    ---------

    sc                    cd1

    ---                    ------

    B1020792 02/01/2015

    B1234567 01/04/2015

    There is one thing that I am not able to do with my request, that is, the ability to retrieve the list of IDs real and not a list of substrings. If I added a.id column in the select clause and the group by clause, the query groups according to the two substr (a.id, 7) and a.id and as a result, the query returns four lines as below:

    substr (a.id, 7) select sc, max (a.create_date) cd1, a.id ID

    of table a, table b

    where a.id! = b.id

    and substr (a.id, 7) = substr (b.id, 7)

    and a.id like 'A %' and b.id like 'A %' / * (I used a % because I am interested only IDs that begin with A) * /.

    and a.id ('A21849B1020792', 'A12345B1234567', 'A12349B1020792', 'A43567B1234567')

    Group by substr (a.id, 7), a.id.

    Result:

    ---------

    sc                    cd1                      ID

    ---                    ------                   ---------

    B1020792 01/01/2015 A12349B1020792

    B1020792 02/01/2015 A21849B1020792

    B1234567 03/01/2015 A12345B1234567

    B1234567 01/04/2015 A43567B1234567

    My goal is to retrieve a list of all the unique identifiers that have the later dates.

    ID:

    ---

    A21849B1020792

    A43567B1234567

    Thanks for your time in advance!

    If it makes sense to treat the first 6 characters of the ID separately from the rest of the id in this problem, maybe it makes sense to store those two parts of the id in two different columns.  Relational databases work best when each column of each row contains 1 single piece of data (at most).  It is so fundamental to the design of table that he called the first normal form.

    Given that the two parts are stored in column 1, so you can something like this Request Top - N:

    WITH got_r_num AS

    (

    SELECT r.id

    r.create_date AS cd1

    , RANK () OVER (PARTITION OF SUBSTR (r.id, 7))

    ORDER BY r.create_date DESC

    ) AS r_num

    FROM table_x g - g for data values

    JOIN table_x r - r for related values

    ON SUBSTR (r.id, 7) = SUBSTR (g.id, 7)

    WHERE g.id IN ('A12349B1020792'

    , "A21849B1020792".

    , "A12345B1234567".

    , "A43567B1234567".

    )

    - AND g.id LIKE 'A %' - if necessary.   The above condition ensures already g.id start with "A".

    AND r.id LIKE 'a % '.

    )

    SELECT id, create_date

    OF got_r_num

    WHERE r_num = 1

    ;

    If you would care to post CREATE TABLE and INSERT instructions for the sample data, and then I could test this.

  • Creation of Contact the PHP export leads to failure: field 'name' must be a string value.

    Hello

    I export contacts from Eloqua to my application using the API as a whole. I am stuck at a point where I'm creating export based on my maps of fields as follows:

    GET .../contact/export

    {'name' ": example","secondsToRetainData": "3600", "fields": {"C_EmailAddress": "{{Contact.Field (C_EmailAddress)" "}}" "}}

    and the server returns an error:

    {"failures": [{'field': 'name', 'coercion': 'Must be a string value, at least 1 character and a maximum of 100 characters long.'}, {'field': 'fields', 'coercion': 'Required.'}]}

    In order to ensure that my JSON string is syntactically correct, I copied (very useful) application at http secure.eloqua.com/api/docs/Dynamic/Bulk/1.0/Export.aspx and run it through the server, which results in the same error.

    I suspect that Eloqua does not recognize parts of my application as a string payload. I use PHP to build a table that is then encoded using json_encode(). All the world has known this before and found a solution? Please share!

    Wouter

    OK, my next wag: is the Content-Type header?  It must be set to application/json.  Who met with some of the calls.

    .  Topher

  • Check the string value when using xdoxslt

    Hello

    I'm new to the BEEP and will have questions in writing this simple code for a model RTF. In plain language, that's what I want to do:

    If (instr(FirstName,'concern',0) > 0 and instr(LastName,'concern',0) > 0 and instr(MiddleName,'concern',0) > 0) then the VNAME variable value "

    on the other

    If (instr(LastName,'1-',0) > 0), then set VNAME variable FirstName

    on the other

    the value of VNAME variable FirstName + "" + name

    Finally... show the VNAME variable

    ===========

    I wrote it, but it doesn't work:

    declared variable... Initialize it to x.

    <? xdoxslt:set_variable($_XDOCTX,_'v_RTPMName',_'x')? >

    String value of control-> - error.

    <? If: (xdoxslt:Instr (lower(coFirstName|| coMiddleName || coLastName), "abuses", 0) > 0)? >

    <? xdoxslt:set_variable($_XDOCTX,_'v_RTPMName',_'')? >

    <? end if? >

    write the variable

    <? xdoxslt:get_variable($_XDOCTX,_'v_RTPMName')? >

    Thanks for the help!

    For a quick overview,.

    InStr is belong to the xdofx family, must be used in this way instead of xdoxslt:Instr()

    For example: If condition 1 0 otherwise true back

    0 then 1 or 0 end if? >

  • How to use CFPARAM with a list of string values

    Hi all

    I have a field value that can be stored with multiple values for a single record: Work_Order = '555555,666666,111111' (note that these are actually stored as a single string value in the comics with commas.)

    I need to analyze this field and enter a new query clause where the string values:

    < CFSET WOIDS = CapProjects.Work_Order >

    < cfloop condition = "#find(',,',WOIDS) #" >

    < cfset WOIDS = "#rereplace (WOIDS, ',',', null, ',' ALL') #" > < br >

    < / cfloop >

    < cfquery name = "CapProjectsWOIDS" datasource = "#URL. DB #">"
    SELECT [ENGOPSMTRLSID]
    [Work_Order]
    OF ENGOPSMTRLS
    WHERE
    < CFOUTPUT >
    ENGOPSMTRLSID = #URL. INDEX #.
    < / CFOUTPUT >
    AND
    < CFOUTPUT >
    Work_Order in (< cfloop index = list "idx" = "#variables.) WOIDS #">"
    < cfqueryparam
    value = #WOIDS #.
    cfsqltype = "cf_sql_varchar".
    list = 'true '.
    (/ > < / cfloop >)
    < / CFOUTPUT >
    < / cfquery >

    I'm doing this right? I get the following error: error running query database. [Macromedia] [SQLServer JDBC Driver] [SQL Server] Incorrect syntax near '@P4 '. What's the length of the loop? How do I drop?

    Thank you

    John

    First of all, you need not use CFOUTPUT in a CFQUERY (or most / all other CFtags)-CF knows.

    Second, you need not complete a list for an 'IN '.  Unless you use a dark database is not MS - SQL, MySQL or Oracle.  And you already know that CFQUERYPARAM has an attribute from the list.

    NOTE: This assumes that the Work_Order data type is char or varchar, not whole.

    
      SELECT [ENGOPSMTRLSID]
          ,[Work_Order]
      FROM ENGOPSMTRLS
      WHERE  ENGOPSMTRLSID = #URL.INDEX# /* <--- I didn't see URL anything, before this.  And I REALLY cannot stress how bad of an idea it is to use a URL variable for your DSN.  Just sayin'.  */
    AND
      Work_Order in  ()
    
    

    Given that you use for the varchar type, you must put quotation marks around the value (line 08), as I have demonstrated.

    HTH,

    ^_^

  • With the help of period as a double zero when entering timecode values

    It is a very long tradition (since CMX edition in the 1970s) to use the period on the numeric keypad as a double zero when entering timecode values.  For example, 1... would be 1:00:00:00.  0102 would be 01:02:00:00.  When you press the period, the application will display 00.  This has been the case with all other editors I've ever used.

    How you ask for it as a feature request?

    -Paul

    Here:

    Adobe - feature request/Bug Report Form

    MtD

Maybe you are looking for