উত্তর:
এর শেষ তিনটি অক্ষর string
:
${string: -3}
অথবা
${string:(-3)}
( প্রথম ফর্মের মধ্যে :
এবং -3
মধ্যে স্থানটি মনে রাখবেন )।
দয়া করে রেফারেন্স ম্যানুয়ালটিতে শেল প্যারামিটার সম্প্রসারণ দেখুন :
${parameter:offset}
${parameter:offset:length}
Expands to up to length characters of parameter starting at the character
specified by offset. If length is omitted, expands to the substring of parameter
starting at the character specified by offset. length and offset are arithmetic
expressions (see Shell Arithmetic). This is referred to as Substring Expansion.
If offset evaluates to a number less than zero, the value is used as an offset
from the end of the value of parameter. If length evaluates to a number less than
zero, and parameter is not ‘@’ and not an indexed or associative array, it is
interpreted as an offset from the end of the value of parameter rather than a
number of characters, and the expansion is the characters between the two
offsets. If parameter is ‘@’, the result is length positional parameters
beginning at offset. If parameter is an indexed array name subscripted by ‘@’ or
‘*’, the result is the length members of the array beginning with
${parameter[offset]}. A negative offset is taken relative to one greater than the
maximum index of the specified array. Substring expansion applied to an
associative array produces undefined results.
Note that a negative offset must be separated from the colon by at least one
space to avoid being confused with the ‘:-’ expansion. Substring indexing is
zero-based unless the positional parameters are used, in which case the indexing
starts at 1 by default. If offset is 0, and the positional parameters are used,
$@ is prefixed to the list.
যেহেতু এই উত্তরটি কয়েকটি নিয়মিত মতামত পেয়েছে, আমাকে জন রিক্সের মন্তব্যকে সম্বোধন করার একটি সম্ভাবনা যুক্ত করুন; যেমনটি তিনি উল্লেখ করেছেন, আপনার স্ট্রিংয়ের দৈর্ঘ্য 3-এরও কম ${string: -3}
হলে খালি স্ট্রিংয়ে প্রসারিত হয়। যদি, এই ক্ষেত্রে, আপনি এর প্রসারণ চান string
, আপনি ব্যবহার করতে পারেন:
${string:${#string}<3?0:-3}
?:
অপারেটরটি শেল অ্যারিমেটিক ব্যবহার করতে পারে, এটি এই তিনটি ব্যবহার করে ; যেহেতু ডকুমেন্টেড হিসাবে, অফসেটটি একটি গাণিতিক এক্সপ্রেশন, এটি বৈধ।
deppfx@localhost:/tmp$ echo ${$(hostname): -3}
-bash: ${$(hostname): -3}: bad substitution
temp=$(hostname); echo "${temp: -3}"
। বাশেরও HOSTNAME
পরিবর্তনশীল রয়েছে (যা আউটপুট থেকে পৃথক বা নাও হতে পারে hostname
)। আপনি যদি এটি ব্যবহার করতে চান তবে ঠিক করুন echo "${HOSTNAME: -3}"
।
some func | echo ${string: -3}
- কিভাবে আমি আউটপুট ধার্য না some func
করার string
?
string=$(some func)
এবং তারপরে echo "${string: -3}"
।
আপনি ব্যবহার করতে পারেন tail
:
$ foo="1234567890"
$ echo -n $foo | tail -c 3
890
শেষ তিনটি অক্ষর পাওয়ার কিছুটা রাউন্ডআউট উপায় বলতে হবে:
echo $foo | rev | cut -c1-3 | rev
আরেকটি কার্যপ্রণালী হ'ল grep -o
লাইন শেষ হওয়ার পরে তিনটি অক্ষর পাওয়ার জন্য সামান্য রেজেক্স যাদু দিয়ে ব্যবহার করা:
$ foo=1234567890
$ echo $foo | grep -o ...$
890
এটি বিকল্পভাবে 1 থেকে 3 টি শেষ অক্ষর তৈরি করতে 3 টিরও কম অক্ষরের সাথে স্ট্রিংয়ের ক্ষেত্রে, আপনি egrep
এই রেজেক্সটি ব্যবহার করতে পারেন :
$ echo a | egrep -o '.{1,3}$'
a
$ echo ab | egrep -o '.{1,3}$'
ab
$ echo abc | egrep -o '.{1,3}$'
abc
$ echo abcd | egrep -o '.{1,3}$'
bcd
আপনি 5,10
সর্বশেষ পাঁচ থেকে দশটি অক্ষর পেতে যেমন বিভিন্ন ব্যাপ্তি ব্যবহার করতে পারেন ।
প্রশ্ন ও gniourf_gniourf উত্তর সাধারণীকরণ করা, যদি আপনি একটি কাটা চাই (এই আমি কি অনুসন্ধানের জন্য করা হয়েছিল) পরিসীমা শেষ থেকে 3 য় থেকে শেষ থেকে, থেকে বলে, 7 ম অক্ষরের, আপনি এই সিনট্যাক্স ব্যবহার করতে পারেন:
${string: -7:4}
যেখানে 4 অবশ্যই দৈর্ঘ্য (7-3)।
এছাড়াও, যখন gniourf_gniourf এর সমাধানটি অবশ্যই সর্বোত্তম এবং নেটেস্ট, তবে আমি কেবল কাটা ব্যবহার করে একটি বিকল্প সমাধান যুক্ত করতে চেয়েছিলাম :
echo $string | cut -c $((${#string}-2))-$((${#string}))
দৈর্ঘ্য a {# স্ট্রিং a একটি পৃথক ভেরিয়েবল হিসাবে সংজ্ঞায়িত করে যদি এটি দুটি লাইনে করেন তবে এটি আরও পঠনযোগ্য।
cut
প্রথমে স্টার্ট / স্টপ গণনা করার এই পদ্ধতির একত্রিত করা এবং তারপরে প্যারামিটারের বিস্তারে এই ভেরিয়েবলগুলি ব্যবহার করা (এটিও উল্লেখযোগ্য cut
এবং ব্যাশ অফসেটগুলি যথাক্রমে 1 এবং শূন্য থেকে শুরু হয়, সুতরাং এটির প্রয়োজন হবে) গণনাগুলিতে অঙ্কিত হতে হবে, যা আমি এখানে করছি না: start=$((${#string}-3)); stop=$((${#string}));
এবং তারপরে echo ${string: $start : $stop}
বনামecho $string | cut -c "$start"-"$stop"