Character replacing in a word

Hi there!
For some reason I can't figure out how to replace ALL the occurrences of
'_a, _b, _c' with 'A, B, C' in a text (for example this_list --> thisList or my_app --> myApp)
When borrowing scripting code I find them easier to read writtenin my 'dialect', so to speak.
I've booked results using the (offset -1) of "_" in theText and character theOffset +1.
That will return the required result in the result box of Scripreditor, but helas not in the text itself.
Plus that my script find only the 1st "_ + some char" while I did implement a repeat command.
Could anyone help me out here. please?
P.S. Since I'm at work right now, I don't have my script at hand, for you to point out the faillures I made.
Thanks a lot,
Marcus

Hello
I'd try something like the code below.
Well, this is barely in AppleScript. But it is much more concise and usually faster for long text.
Please copy code from this web page, not from subscribed email text, for I escaped some characters for posting.
Cheers,
H
--SCRIPT
set t to "this_list, my_app"
return a_string2aString(t)
on a_string2aString(t)
string t : source string
return string : modified string such that every character preceded by _ is changed to uppercase.
set pl to "s/_+(.)/\\U$1/og;"
return do shell script ("echo " & quoted form of t & " | perl -Mutf8 -pe " & quoted form of pl)
end a_string2aString
--END OF SCRIPT

Similar Messages

  • Keyboard - Character replacement - Keystroke Event !

    Hello ! I am developing a specialized editor using JEditorPane.
    One the functionalities that I am trying to provide is character replacement using keyboard. Meaning that if some one enters, say, 'q' then a 'z' should be printed at the point of insertion. Something like
    "This is a ebra"--> After typing 'q' on the keyboard before the beginning of the fourth word "ebra", the resulting text in the editor pane should look like "This is a zebra"; meaning here 'q' is used to type in 'z'.
    Now here is my code but I am getting both 'z' and 'q' printed i.e. the result looks like, "This is a zebraq". So my questions are,
    1) How do I get rid of the unwanted 'q'?
    2) Is there a better way of doing this kind of replacement.
    Thanks in advance!!
    public void keyTyped (KeyEvent e)
    PressedKey = e.getKeyChar();
    String strBeforeInsert = new String("");
    String strAfterInsert = new String("");
    String docString = new String("");
    try{
    int length = edit.getDocument().getLength();
    strBeforeInsert = edit.getDocument().getText(0,dot);
    System.out.println("---- strBeforeInsert " + strBeforeInsert);
    strAfterInsert = edit.getDocument().getText((dot), (length-dot));
    System.out.println("---- strAfterInsert " + strAfterInsert);     
    catch (BadLocationException ble){
    if (PressedKey == 'q')
         System.out.println(">>>>>> " + PressedKey);
         docString = strBeforeInsert.concat("z") + strAfterInsert;
         edit.setText(docString);

    I would use a DocumentListener. Check out the Swing tutorial for more information:
    http://java.sun.com/docs/books/tutorial/uiswing/events/documentlistener.html
    In the insertString(..) method when a 'q' is typed, insert a 'z' instead.

  • I wrote an 2500 words assignment and saved in Microsoft word 97-2003 and by mistake replaced with another word file.How can i retain my original work?

    I wrote an 2500 words assignment and saved in Microsoft word 97-2003 and by mistake replaced with another word file.How can i retain my original work? 

    Hi,
    Does this happen to all 97-2003 Word files?
    Word 2013 now has lots of updates compared with earlier version of Word, lots of features have been updated. Use Word 2013 to open documents created in earlier versions of Word (Word 97-2003 format), you will probably encounter unexpected problems,
    expecially for those heavily formatted files.
    We would suggest you to convert your document to the Word 2013 file format, then you will be able to access the new and enhanced features in Word 2013.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Replace sentances and words directly in the FramMaker

    Hi!
    I want to replace complete sentances and words directly in the FramMaker where I keep the layout of my entire book.
    The program/the code I am looking for need to be able to replace many words and sentences at the same time.
    For example:
    <in such a way>  after replacing:  <på sådant sätt>
    <To this end>  after replacing:  <För detta ändamål>
    <refer to the instructions>  after replacing:  <se anvisningarna i>
    <by means of> . after replacing:  <med hjälp av>
    I´ve come across som programs with language memory, but I need to be able to replace thousands of words/sentences and the opensource versions I´ve seen only allow me to load the memory with 150 words.
    Would you be so kind and point me in the correct direction. If you could recommend some program or code that is able to do at least some of these requirements, it would be of great help because i could rewrite the code myself.
    With kind regards
    Cecilia V

    You might want to consider looking at FrameScript http://www.framescript.com to automate this.
    If you have the FM content in structured FM and can roundtrip it via XML, then there would be a lot of other tools available for processing the content. I'm partial to TextPipePro, see http://www.datamystic.com/textpipe.html
    You may be also be able to use TextPipe on the MIF format, however, sometimes FM breaks up the content into smaller substrings, so it's quite possible to miss some groups of words or sentences for replacement.

  • Lost Firefox replaced with Microsoft Word when updating Firefox

    I was offered a chance to update Firefox - it said update now or later. Stupidly I said now and since then I have problems. My start button has lost the internet connection and has been replaced with Microsoft Word. I cannot get my old bookmarks and Firefox back and it has all been replaced with Microsoft Word which I hate. Please help.

    Updating to the latest version 12.0 did the job. Thanks.

  • Character check total as word

    Hi all,
    1. Anyone know how to expand character Check total as word (i.e. Ten Thousand Eight Hundred Dollar only) generating by system in Checks for payment program? If there have any setting or coding need to adjust?
    2. How about maximum character is allow? I'm using SAP B1 2005 SP01 PL 45 and database Ms. SQL Server 2005. If there need to amend in database, how to adjust it?
    Thanks in advance.
    uddin
    Edited by: Muhd Mahyuddin Zakaria on Feb 3, 2009 12:55 PM

    Hi,
    I don't know if any standard method is available for that, but you can use following code:
        Public Function AmtToWords(ByVal Amount As Single) As String
            Dim Paise, Rupees As Integer
            Dim Words As String
            Dim N1, N2 As Integer
            Rupees = Amount
            Select Case Rupees
                Case Is <= 9
                    Words = Digit(Rupees)
                Case Is < 20
                    Words = EleToNin(Rupees)
                Case Is < 100
                    N2 = Rupees Mod 10
                    N1 = (Rupees - N2) / 10
                    Words = Ten(N1) & " " & IIf(N2 = 0, "", Digit(N2))
                Case Is < 1000
                    N2 = Rupees Mod 100
                    N1 = (Rupees - N2) / 100
                    Words = Digit(N1) & " Hundred " & AmtToWords(N2)
                Case Is < 100000
                    N2 = Rupees Mod 1000
                    N1 = (Rupees - N2) / 1000
                    Words = AmtToWords(N1) & " Thousand " & AmtToWords(N2)
                Case Is < 10000000
                    N2 = Rupees Mod 100000
                    N1 = (Rupees - N2) / 100000
                    Words = AmtToWords(N1) & " Lakhs " & AmtToWords(N2)
            End Select
            Return Words
        End Function
        Public Function Digit(ByVal Number As Integer) As String
            Select Case Number
                Case 0
                    Return ""
                Case 1
                    Return "One"
                Case 2
                    Return "Two"
                Case 3
                    Return "Three"
                Case 4
                    Return "Four"
                Case 5
                    Return "Five"
                Case 6
                    Return "Six"
                Case 7
                    Return "Seven"
                Case 8
                    Return "Eight"
                Case 9
                    Return "Nine"
            End Select
        End Function
        Public Function Ten(ByVal Number As Integer) As String
            Select Case Number
                Case 1
                    Return "Ten"
                Case 2
                    Return "Twenty"
                Case 3
                    Return "Thirty"
                Case 4
                    Return "Fourty"
                Case 5
                    Return "Fifty"
                Case 6
                    Return "Sixty"
                Case 7
                    Return "Seventy"
                Case 8
                    Return "Eighty"
                Case 9
                    Return "Ninety"
            End Select
        End Function
        Public Function EleToNin(ByVal Number As Integer) As String
            Select Case Number
                Case 10
                    Return "Ten"
                Case 11
                    Return "Eleven"
                Case 12
                    Return "Twelve"
                Case 13
                    Return "Thirteen"
                Case 14
                    Return "Fourteen"
                Case 15
                    Return "Fifteen"
                Case 16
                    Return "Sixteen"
                Case 17
                    Return "Seventeen"
                Case 18
                    Return "Eighteen"
                Case 19
                    Return "Nineteen"
            End Select
        End Function

  • String binding + character replacement

    When I use string binding to update Long datatypes with the Oracle thin jdbc driver I find that all £ characters are replaced with ¿
    Is this a bug in the driver or do I need to change a character set setting somewhere?
    NB the character replacement doesn't happen when I just use a straightforward update statement

    What is the database character set?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Character replacement + String binding

    Toplink seems to use string binding with updates that can contain strings over a certain length. This is fine in most cases but when the string contains pound signs (£) the character stored to the DB is ¿. This doesn't happen when toplink does a straight forward update.
    Does anyone one know of a way to either stop toplink from using string binding or to prevent character replacement when string binding is used?
    Many thanks
    Ej

    There is a login setting to configure string binding.
    session/project.getLogin().setUsesStringBinding(false);
    session/project.getLogin().setStringBindingSize(255);
    Note that the default is false, so you must already be setting it to true somewhere.
    In general it seems that your JDBC driver is not handling the pound sign correctly when binding is used, you may wish to also report this to your JDBC provider.

  • My wife's iPad mini has a problem. When she types in the word 'sweet' in safari or Facebook it is auto replaced with the word ' f@€¥ing" the full word. Can anyone help

    My wife's iPad mini has a problem. When she types in the word 'sweet' in safari or Facebook it is auto replaced with the word ' f@€¥ing" the full word. Can anyone help

    Check her keyboard shortcuts:
    Settings > General > Keyboard > Check the shortcuts list

  • Grep query - optional character, leading zeros & shortening words

    I have recently been taught (thanks to this forum) how to use Grep searches (wish I’d known about it years ago!). I still can’t get my head around some of the search strings - hoping someone can shed some light & explain what the components are doing so I can further utilise them?
    I have dates for a travel brochure, given to me sometimes separated by commas without the date (2, 3, 4, 5) & I need to put each date into its own cell in a table with the month next to them (with no space & going across left to right) + with a leading zero for single digits (02Jan /t 03Jan /t 04Jan /t 05Jan).
    How can I get it to add a leading zero for single digits & add the month to the last number that doesn’t have the comma (which I otherwise utilise in the search)? (The way I get it currently is  2Jan /t 3Jan /t 4Jan /t 5).
    I can’t seem to work out the optional character command.
    The other problem I have is that the months need to be shortened to just the first 3 digits & I’m not sure how to do that, either.
    Any light shed would be appreciated!
    Using current Indd on Mac.
    Message was edited by: Alleyna Lenton I have just found (through searching IndesignSecrets) how to do the optional comma: (\d+),?    ->    $1Mar\t  (although I'm not clear whether the '+' after '\d' represents more than 1 or any number of digits?) Just the other 2 probs I have - abbreviating words to first 3 characters & adding a zero to the front of single digits.

    Very good -- GREP is a useful tool to master! If you can't work out the last few things, do let us know. Make sure to list a couple of Before-After examples.
    The + after \d is indeed for "1 or more", that is, at least one and then as much as possible (I don't think there is a realistic upper limit). Contrast with * which is "zero or more" and ? for "none or exactly 1".
    Cutting off month names after the first 3 characters was asked not too long ago, but I cannot recall what the offered solution was. Try something like this:
    (?<=\bJan)uary
    (replace with nothing). The (?<=xxx) is a positive lookbehind: it will search the text "uary" and only match it if preceded by "Jan". By writing out all months in one long string, you can change all of them:
    (?<=\bJan)uary|(?<=\bFeb)ruary|(?<=\bMar)ch|(?<=\bApr)il
    ... etc., etc., where the vertical bar is an OR operator. (It's a bit long written in full, but remember you only have to write this GREP once and then you can save it.)

  • How to pass variable to data tab which replace text in Word attachment

    Dear ABAP folks,
    I use METHOD cl_gui_frontend_services=>gui_upload to upload my word doc in BINARY and sucessful sent this word doc as attachment with Thomas Jung's FUNCTION 'Z_E_KEG_SEND_SIMPLE_EMAIL'.
    However, inside the word file, i need insert varible personnel number p0000-pernr.
    *How to pass the value p0000-pernr to data tab (lt_data) which replace symbol text &s_pernr& in doc before created as attachment ? *
    I try 'SCMS_BINARY_TO_TEXT'  and 'SCMS_BINARY_TO_STRING'    but fail.
    Need expert 's help.
    Thanks & Rgds,
    Felice
    Below are my code:
    ** Upload file to read data as binary
        CALL METHOD cl_gui_frontend_services=>gui_upload
    IF lt_data[] IS NOT INITIAL.
        CALL FUNCTION 'SO_SPLIT_FILE_AND_PATH'
         EXPORTING
            full_name     = lv_filename
          IMPORTING
            stripped_name = lv_str_filename
          EXCEPTIONS
            x_error       = 1
            OTHERS        = 2.
        SPLIT lv_str_filename AT '.' INTO lv_junk lv_filetype.
        ls_attach-type = lv_filetype.
        ls_attach-subject = lv_str_filename.
        ls_attach-CONTENT_HEX[] = lt_data[].
        APPEND ls_attach TO lt_attach.
        CLEAR ls_attach.
    ENDIF.
    CALL FUNCTION 'Z_E_KEG_SEND_SIMPLE_EMAIL'
    EXPORTING
    REQUESTED_STATUS = 'E'
    DOCUMENTS = lt_attach
    RECIPIENTS = lt_rec
    MESSAGE = t_objtxt
    SUBJECT = 'Confirmation Review'.
    COMMIT WORK.
    clear lt_rec.
    clear ls_rec-i_copy.

    Dear Luigi,
    Do you have sample code which replace the value in Word file ?
    I try sample code below, but the mergefield 'Title' in Word file not replace instead it override the whole file.
    Even i try with different download path, it also not update field 'Title'.
    The mergefield i insert by microsoft word > mailings > insert merge field >Title.
    report ztestmail_c.
    data: global_filename LIKE RLGRAP-FILENAME.
    data: begin of imerge occurs 0,
    Title(85) type c, field02(85) type c,
    field03(85) type c, field04(85) type c,
    end of imerge.
    data: begin of itabf occurs 31,
    ff(10),
    end of itabf.
    itabf-ff = 'Title'. "append itabf.
    imerge-Title = 'test0'.
    append imerge. clear imerge.
    global_filename = 'c:\temp\confirm-form0508.doc'.
    CALL FUNCTION 'WORD_OLE_FORMLETTER'
    EXPORTING
    WORD_DOCUMENT = global_filename
    *   hidden        =
    *   word_password =             "               Password for the mail merge file (.DOC)
    *   password_option = 1         " i             Controls password use
    *   file_name =  'confirm-form0508'               " rlgrap-filename  Name of download file (w/o ext.)
    *   new_document =              "               Create new Word document
    DOWNLOAD_PATH = 'C:\temp\confirm-form0615.doc'
    TABLES
    DATA_TAB = imerge
    FIELDNAMES = itabf
    EXCEPTIONS
    INVALID_FIELDNAMES = 1
    USER_CANCELLED = 2
    DOWNLOAD_PROBLEM = 3
    COMMUNICATION_ERROR = 4
    OTHERS = 5.

  • Character Direction override in Word 2003 imports

    I've searched for Character Direction and seen mainly mentions of ME and foreign language conversions right to left and left to right. We do not use ME or any foreign language features. The behavior I'm troubleshooting for InDesign CS5 7.0.3 importing Word 2003 docs on a Windows XP macine, is as follows:
    I have hundreds of Word 2003 documents, used in a production environment where editors update text daily or weekly, the production dept. imports into newsletters in InDesign. We go from import to finished product at the printer sometimes as quickly as 15 minutes.
    In CS4, all of these documents import into my publications without overrides, using Microsoft Word Import options set for Customize Style Import, and style mapping used to map Word paragraph styles to ID paragraph styles
    After the CS5 conversion, every one of my Word 2003 documents for all of my publications come in with overrides showing hyphenation settings and character direction that did not appear with CS4. This is despite my mapping styles, and the fact that these options can't even be (as far as I can tell) a paragraph or character override inside Word.
    I went back to CS4 to make sure there were no changes in the Word docs. They worked perfectly, no overrides.
    Inside Word 2003, I had to go to Tools > Language > Hyphenation and make the hyphenation setting in the Word doc match exactly the hyphenation settings for the paragraph style it was being mapped to in InDesign to make it go away at import.
    Now I am left only with the character direction Left To Right override, which I can't figure out how to fix.
    I can't find a way to set this in Word, and I can't find a way (since I don't have ME) to change it in InDesign. It is not practical for me to run a script for every import or continue to reset the overrides manually, because we simply don't have to the time, our deadlines are too tight and frequent. Plus, if we miss one, there are definite consequences, because the data is exported in a variety of formats for reuse automatically via scripts, and the override is messing up my exports.
    I was hoping I'd see a post that says, "Ah yes, the Word filters in CS5 were updated, and now we look for hyphenation and character direction, and here's what you can do as a workaround" but I'm not seeing anything. If I can't define left to right in the regular version of ID or in Word 2003, does anyone have an idea how I can get my import to ignore it again?

    I hate it when I know too much about MS Word.
    I don't have Word accessible right now, but you can set character direction in (the Windows version of) Word. I don't remember the exact details off-hand. Character direction is not the only overrides I've seen make its way in. I've seen some CJK features get imported as overrides as well (by users not using CJK languages).
    It actually depends on your OS and your version of Word, I think. In Word 2007 on Windows 7, you need to have a RTL keyboard installed in order to expose the right-to-left-paragraph and left-to-right-paragraph buttons on the ribbon. I think that Asian scripts are on in all installs of Word 2007, but since our OS has some Asian keyobards turned on by default by Group Policy, I'm unsure of this. In Word 2003 on Windows XP, you need the, oh heck I can't visualise the menu, something like "Enable complex script support for right-to-left languages" in the Region and Language tab in Control Panel.
    For all recent versions of Word, you can check the Fonts window (control-D) to see if you have one, two, or three scripts enabled.
    Font = Latin-script
    Asian text font = CJK
    Complex scripts = Thai/Lao/etc. and Arabic/Farsi/etc.
    Finally: It's possible to have a RTL paragraph in a Word document on the machine of someone who does not have the Complex Scripts dropdown in the Font menu in Word. Likewise, it's possible to have paragraph styles in Word with CJK information on a machine that does not have CJK support turned on in Word (I have seen this numerous times in the Win XP/Office 2003 era).
    So, in terms of the original post - I haven't yet figured out if this is a new feature of CS5, or something about one's install of Word or Windows, but there are so many variables that the only obvious solution to me is "a workflow in which overrides are always cleared." You don't like that solution, I understand, but any other solution would require some extended troubleshooting of the entire workflow, including all installs of Word that might contribute a Word doc to be placed in ID.

  • [JS][CS3]Applying Character Style to First Word

    I am a noob as far as Javascript  is concerned, and I was hoping for a little guidance.
    Here's my scenario: I have a book that has been typeset all in one file; the main content is all in one story. I want to select the first word of every text frame on each page and apply a character style. My goal is to utilize this character style to indicate page breaks in the XML--I'll map the style to a specific tag.
    So far I have this poor specimen:
    var myDocument = app.activeDocument;
    var myPage = myDocument.pages.item(1);
    var myTextFrame = myPage.textFrames.item(0);
    if( app.activeDocument.stories[0].paragraphs[0].words[0] != null )
    myTextFrame.paragraphs.item(0).words.item(0).appliedCharacterStyle =
    myDocument.characterStyles.item('foo');
    I know, I haven't set up any sort of loop yet (which will be trickier given the fact that there will be blank versos, etc). What I'm trying to do in this is to select the first word in the first paragraph on the second page--which it does in fact do. Problem is, the first paragraph on the second page starts on the first page, so I'm selecting that a word on the first page, not the second page.
    As I said, lots of work to do but a little help on getting to the right word would be most appreciated.

    Well, you were on the right track, but testing 'myText' fails if there is no text frame on a page because it fails one line earlier
    >var myTextFrame = myPage.textFrames.item(0);
    just before this, you should test the number of text frames:
    if (myPage.textFrames.length > 0)
      ... your stuff ..
    Only use this if you are absolutely positive there is just a single text frame on each page! A slightly better way would be to always loop over each textframe:
    for (frames=0; frames<myPage.textFrames.length; frames++)
      var myTextFrame = myPage.textFrames.item(frames);
      ..etc.
    in which case you also don't have to test its length first (the loop will not be executed if there are zero text frames).
    [Techy] Since you have only one continuous story, an even better way would be to loop over the textframes of that story alone. You have to identify the story somehow, and I usually click the text cursor in the one I need:
    myStory = app.selection[0].parentStory;
    or you can rely on the fact that the story starts in the only text frame on page 1:
    myStory = app.activeDocument.pages[0].stories[0];
    (I think that oughta work.) Then, each frame of this story up till the end can be found in the array
    myStory.textContainers
    which are usually text frames. You can loop over these using
    for (frame=0; frame<myStory.textContainers.length; frame++)
      myTextFrame = myStory.textContainers[frame];
    ..etc.

  • Special character "/" replacing with blank with Direct Input Method posting

    Hi All,
    I am posting FI historical data using Direct Input Method. Payment term contains special character "/"( I/E). SAP standard program replacing Special character "/" with blank (I E) so document posting is failing. Could you please advise.
    Thanks
    Chandra.

    Can You please specify the Transaction code and SAP program name for direct input.

  • Character replacement within a PDF

    I've been working on a tool to replace a specified character from within an Indesign pdf. When truetype fonts are used this posed no problems, but when type0 fonts are used the character mapping appears not to make any sense.
    I get the feeling it could be that the information I need, may not be included when the PDF is created from Indesign.
    I've trawled the net for information, but appear to have run out of options.
    If any one has had similar issues or has any ideas as to what may be going on, it would be greatly appreciated.

    I successfully Copy/Pasted the text.
    Here is the only useful information I can seem to find, I think maybe the CMap is predefined but cannot seem to find any reference to CMapName, not sure, perhaps I am missing something obvious (by the way, thanks very much for your help, so far):
    26 0 obj
    << /Subtype /Type0
    /DescendantFonts 27 0 R
    /BaseFont /DKYBZV+FranklinGothic-DemiCond
    /ToUnicode 44 0 R
    /Encoding /Identity-H
    /Type /Font
    >>
    endobj
    27 0 obj
    [28 0 R]
    endobj
    28 0 obj
    << /Subtype/CIDFontType0
    /FontDescriptor 29 0 R
    /BaseFont /DKYBZV+FranklinGothic-DemiCond/W[1[250]17 26 511 130[511]]
    /CIDSystemInfo 30 0 R/DW 1000
    /Type /Font
    >>
    endobj
    29 0 obj
    << /StemV 136
    /FontName/DKYBZV+FranklinGothic-DemiCond
    /FontStretch/Condensed/FontFile3 43 0 R
    /FontWeight 700/Flags 4
    /Descent -250
    /FontBBox[-141 -250 941 903]
    /Ascent 903
    /FontFamily(Franklin Gothic)/CapHeight 667
    /XHeight 493/Type
    /FontDescriptor/ItalicAngle 0
    >>
    endobj
    30 0 obj
    << /Supplement 0
    /Ordering(Identity)
    /Registry(Adobe)
    >>
    endobj
    44 0 obj
    << /Length 279
    /Filter/FlateDecode
    >>
    stream
    Hâ\KkÑ0

Maybe you are looking for

  • Unable to enable security and create admin user after reset - px4-300d

    Our px4-300d became inaccessible a few days ago.  I couldn't get to any shares from any machine, and I couldn't get to the admin console.  When I checked the unit, there was no indication that anything was wrong (ie - the panel didn't show any failur

  • I-pod touch 3.1.2 one big mess

    I just received this as a present, and have been having nearly constant problems. Here are the problems: 1. only the factory installed apps work 2. apps that are bought/downloaded only work randomly 3. when apps aren't working, they still appear on m

  • I am trying to erase everything on my i-pod.

    I am having a hard time deleting the things on my i-pod.  Please help me. Thank u. Shawn Stopper

  • Bluetooth mobile peers can't send files to Mac

    Bluetooth mobile peers can't send files to Mac This is about os x 10.9.5 on Mac 2013 late. For the test additionally two mobile devices are used, one is a mobile phone with some old version of Symbian, the other one is an Android device approx 1 year

  • Is it possible to use ppp cb with dialer int and AAA provided cb-dialstr

    Hello Cisco fellows, I am wondering if I can use callback with AAA provided callback string without a rotary group but with dialer profiles. I have tried to setup a callback server with the following config: interface BRI0 no ip address encapsulation